Bond_009 il y a 6 ans
Parent
commit
71479286e9
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

+ 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);
             }
         }