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:
bakerboy448 2024-01-19 17:34:20 -06:00 committed by GitHub
parent b53f8d4552
commit 70a5dae293
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -227,7 +227,7 @@ public string UrlBase
return urlBase;
}
return "/" + urlBase.Trim('/').ToLower();
return "/" + urlBase;
}
}