mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-20 06:10:34 +00:00
Don't lowercase UrlBase in ConfigFileProvider
UrlBase should honour the case it is given.
This commit is contained in:
parent
fa0fc3158b
commit
e1de523c89
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ namespace NzbDrone.Core.Configuration
|
|||
return urlBase;
|
||||
}
|
||||
|
||||
return "/" + urlBase.Trim('/').ToLower();
|
||||
return "/" + urlBase;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue