mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Don't lowercase UrlBase in ConfigFileProvider
UrlBase should honour the case it is given. (cherry picked from commit e1de523c89f7649e64f520b090bbdb2f56cc4b85)
This commit is contained in:
parent
83224884f7
commit
5ce376d314
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ namespace NzbDrone.Core.Configuration
|
|||
return urlBase;
|
||||
}
|
||||
|
||||
return "/" + urlBase.Trim('/').ToLower();
|
||||
return "/" + urlBase;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue