mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Use string.Trim(char) instead of string.Trim(char[]) where possible
This commit is contained in:
parent
bc7359f87d
commit
9041389f65
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue