mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
Allow commas in auth values when wappred in a double quote
This commit is contained in:
parent
13bc57ecc3
commit
305e5ebaf4
@ -265,7 +265,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
|
||||
|
||||
// Remove uptil the first space
|
||||
authorizationHeader = parts[1];
|
||||
parts = authorizationHeader.Split(',');
|
||||
parts = authorizationHeader.Split("\",\"");
|
||||
|
||||
var result = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user