Przeglądaj źródła

Merge pull request #1296 from Bond-009/fix1234

Fix #1234
Anthony Lavado 6 lat temu
rodzic
commit
f97f6b8061

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

@@ -629,7 +629,7 @@ namespace Emby.Server.Implementations.HttpServer
 
             if (lastModifiedDate.HasValue)
             {
-                responseHeaders[HeaderNames.LastModified] = lastModifiedDate.ToString();
+                responseHeaders[HeaderNames.LastModified] = lastModifiedDate.Value.ToString(CultureInfo.InvariantCulture);
             }
         }