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