aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
index 8fa20aea9..6b4588dbc 100644
--- a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
+++ b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
@@ -309,7 +309,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
// Meeting a comma after a closing escape char means the value is complete
if (start < i)
{
- result.Add(authtorizationHeader[start..(i)]);
+ result.Add(WebUtility.UrlDecode(authtorizationHeader[start..(i)]));
}
start = i + 1;
@@ -322,7 +322,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
// Add last value
if (start < i)
{
- result.Add(authtorizationHeader[start..(i)]);
+ result.Add(WebUtility.UrlDecode(authtorizationHeader[start..(i)]));
}
return result.ToArray();