Don't lowercase UrlBase in ConfigFileProvider

UrlBase should honour the case it is given.

(cherry picked from commit e1de523c89f7649e64f520b090bbdb2f56cc4b85)
pull/8747/head
Marty Zalega 3 years ago committed by Qstick
parent 104aadfdb7
commit 9ccefe0095

@ -225,7 +225,7 @@ namespace NzbDrone.Core.Configuration
return urlBase;
}
return "/" + urlBase.Trim('/').ToLower();
return "/" + urlBase;
}
}

Loading…
Cancel
Save