aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2019-04-30 23:35:11 -0400
committerGitHub <noreply@github.com>2019-04-30 23:35:11 -0400
commit2bc378a9c377cbcaf013eb83dac112aa47bd9053 (patch)
tree855dbc86f22cb4d5186e98044cfefc23b6068911 /Emby.Server.Implementations/HttpServer
parent61d7bed18145cd8b56b748a87b9398fb75332044 (diff)
parente8196fed7cdc43f83f666af477652a90f41b5961 (diff)
Merge pull request #1337 from jellyfin/release-10.3.z
Backmerge for 10.3.2 release
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpResultFactory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
index 5c29988c7..0b2924a3b 100644
--- a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/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);
}
}