mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
-fix authorizationHeader is no longer a string
This commit is contained in:
@@ -264,8 +264,8 @@ namespace Emby.Server.Implementations.HttpServer.Security
|
||||
}
|
||||
|
||||
// Remove up until the first space
|
||||
authorizationHeader = parts[1];
|
||||
return GetParts(authorizationHeader);
|
||||
authorizationHeader = authorizationHeader[(firstSpace + 1)..];
|
||||
return GetParts(authorizationHeader.ToString());
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user