Fix setting duplicate keys from auth header

This commit is contained in:
crobibero 2020-10-26 17:18:54 -06:00
parent a69397d714
commit eee95336b5
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
if (param.Length == 2)
{
var value = NormalizeValue(param[1].Trim(new[] { '"' }));
result.Add(param[0], value);
result[param[0]] = value;
}
}