mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 19:08:53 -07:00
No need to double check param length
This commit is contained in:
parent
064a9cedbd
commit
13bc57ecc3
@ -273,10 +273,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
|
||||
{
|
||||
var param = item.Trim().Split('=', 2);
|
||||
|
||||
if (param.Length == 2)
|
||||
{
|
||||
result[param[0]] = param[1].Trim('"');
|
||||
}
|
||||
result[param[0]] = param[1].Trim('"');
|
||||
}
|
||||
|
||||
return result;
|
||||
|
Loading…
Reference in New Issue
Block a user