Use string.Trim(char) instead of string.Trim(char[]) where possible

pull/4478/head
Bond_009 4 years ago
parent bc7359f87d
commit 9041389f65
No known key found for this signature in database
GPG Key ID: 63AB4E6262A96A87

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

Loading…
Cancel
Save