Bunch of OIDC fixes and one extra (#4126)

This commit is contained in:
Fesaa
2025-10-21 22:07:04 +02:00
committed by GitHub
parent 947ab758ca
commit bda2a4d50d
20 changed files with 140 additions and 93 deletions
+1 -1
View File
@@ -91,7 +91,7 @@ public class OpdsController : BaseApiController
if (!Configuration.DefaultBaseUrl.Equals(baseUrl, StringComparison.InvariantCultureIgnoreCase))
{
// We need to update the Prefix to account for baseUrl
prefix = baseUrl + OpdsService.DefaultApiPrefix;
prefix = baseUrl.TrimEnd('/') + OpdsService.DefaultApiPrefix;
}
return new Tuple<string, string>(baseUrl, prefix);