Explorar el Código

Fix trim input

Claus Vium hace 6 años
padre
commit
df5e87409a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

+ 1 - 1
Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

@@ -535,7 +535,7 @@ namespace Emby.Server.Implementations.HttpServer
 
             var contentType = options.ContentType;
             var etag = requestContext.Headers.Get("If-None-Match");
-            var cacheKey = etag != null ? new Guid(etag.Trim("\"")) : Guid.Empty;
+            var cacheKey = etag != null ? new Guid(etag.Trim('\"')) : Guid.Empty;
             if (!cacheKey.Equals(Guid.Empty))
             {
                 var key = cacheKey.ToString("N");