Don't lowercase UrlBase in ConfigFileProvider

UrlBase should honour the case it is given.

(cherry picked from commit e1de523c89f7649e64f520b090bbdb2f56cc4b85)
pull/3612/head
Marty Zalega 2 years ago committed by Bogdan
parent 83224884f7
commit 5ce376d314

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

Loading…
Cancel
Save