Prechádzať zdrojové kódy

No need to double check param length

Tommaso Stocchi 4 rokov pred
rodič
commit
13bc57ecc3

+ 1 - 4
Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs

@@ -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;