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
commit f97f6b8061
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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