mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-05-09 05:22:09 +02:00
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>
This commit is contained in:
parent
b53f8d4552
commit
70a5dae293
1 changed files with 1 additions and 1 deletions
|
|
@ -227,7 +227,7 @@ public string UrlBase
|
|||
return urlBase;
|
||||
}
|
||||
|
||||
return "/" + urlBase.Trim('/').ToLower();
|
||||
return "/" + urlBase;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue