瀏覽代碼

Merge pull request #2050 from softworkz/ETagHeader

Fix: ETag-Values MUST be quoted according to W3C spec
Luke 9 年之前
父節點
當前提交
8a4faa37ae
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs

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

@@ -275,7 +275,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
         /// <returns>System.Object.</returns>
         private object GetCachedResult(IRequest requestContext, IDictionary<string, string> responseHeaders, Guid cacheKey, string cacheKeyString, DateTime? lastDateModified, TimeSpan? cacheDuration, string contentType)
         {
-            responseHeaders["ETag"] = cacheKeyString;
+            responseHeaders["ETag"] = string.Format("\"{0}\"", cacheKeyString);
 
             if (IsNotModified(requestContext, cacheKey, lastDateModified, cacheDuration))
             {