diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-04-30 23:35:11 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-30 23:35:11 -0400 |
| commit | 2bc378a9c377cbcaf013eb83dac112aa47bd9053 (patch) | |
| tree | 855dbc86f22cb4d5186e98044cfefc23b6068911 /Emby.Server.Implementations/HttpServer | |
| parent | 61d7bed18145cd8b56b748a87b9398fb75332044 (diff) | |
| parent | e8196fed7cdc43f83f666af477652a90f41b5961 (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.cs | 2 |
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); } } |
