-fix split on comma and double quotes

pull/4799/head
Tommaso Stocchi 4 years ago
parent 305e5ebaf4
commit b611a108f8

@ -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…
Cancel
Save