diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-08-14 01:54:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-14 01:54:45 -0400 |
| commit | 7b354c63d2e3cde587e59c38f7b2c661e9a91cab (patch) | |
| tree | 0de3a5b03e2b49360723e2aaf18a5f23b4961650 /MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs | |
| parent | 49255561fb4aab64bdf353de80ea444139af5055 (diff) | |
| parent | 89dd4f0be1721ef8f8357051cafea2703ab38b2e (diff) | |
Merge pull request #2054 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs index 194904320..27065d0f5 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs @@ -534,7 +534,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer if (lastDateModified.HasValue && (string.IsNullOrEmpty(cacheKey) || cacheDuration.HasValue)) { AddAgeHeader(responseHeaders, lastDateModified); - responseHeaders["LastModified"] = lastDateModified.Value.ToString("r"); + responseHeaders["Last-Modified"] = lastDateModified.Value.ToString("r"); } if (cacheDuration.HasValue) |
