View | Details | Raw Unified | Return to bug 54305
Collapse All | Expand All

(-)a/kelvin-api/ucsschool/kelvin/routers/base.py (-1 / +1 lines)
Lines 118-124 class LibModelHelperMixin(BaseModel): Link Here
118
        single-character equivalents.
118
        single-character equivalents.
119
        """
119
        """
120
        up: ParseResult = urlparse(url)
120
        up: ParseResult = urlparse(url)
121
        replaced = up._replace(scheme="http", path=unquote(up.path))
121
        replaced = up._replace(scheme="http", netloc=up.netloc.lower(), path=unquote(up.path))
122
        return replaced.geturl()
122
        return replaced.geturl()
123
123
124
    @validator("udm_properties")
124
    @validator("udm_properties")

Return to bug 54305