mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-05 22:54:29 -04:00
Merge pull request #2050 from softworkz/ETagHeader
Fix: ETag-Values MUST be quoted according to W3C spec
This commit is contained in:
commit
8a4faa37ae
@ -275,7 +275,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
|
|||||||
/// <returns>System.Object.</returns>
|
/// <returns>System.Object.</returns>
|
||||||
private object GetCachedResult(IRequest requestContext, IDictionary<string, string> responseHeaders, Guid cacheKey, string cacheKeyString, DateTime? lastDateModified, TimeSpan? cacheDuration, string contentType)
|
private object GetCachedResult(IRequest requestContext, IDictionary<string, string> responseHeaders, Guid cacheKey, string cacheKeyString, DateTime? lastDateModified, TimeSpan? cacheDuration, string contentType)
|
||||||
{
|
{
|
||||||
responseHeaders["ETag"] = cacheKeyString;
|
responseHeaders["ETag"] = string.Format("\"{0}\"", cacheKeyString);
|
||||||
|
|
||||||
if (IsNotModified(requestContext, cacheKey, lastDateModified, cacheDuration))
|
if (IsNotModified(requestContext, cacheKey, lastDateModified, cacheDuration))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user