Merge pull request #1296 from Bond-009/fix1234

Fix #1234
This commit is contained in:
Anthony Lavado
2019-04-25 01:37:02 -04:00
committed by GitHub

View File

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