Fixed: Don't lowercase UrlBase in ConfigFileProvider

UrlBase should honour the case it is given.

(cherry picked from commit e1de523c89f7649e64f520b090bbdb2f56cc4b85)
(cherry picked from commit 9ccefe00951d2959ef79bdaa5731d95f97162d46)

Co-authored-by: Marty Zalega <marty@zalega.me>
pull/1995/head
bakerboy448 4 months ago committed by GitHub
parent b53f8d4552
commit 70a5dae293
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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

Loading…
Cancel
Save