Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/319dcda4beb5cde9cd858a33a9603f0cff54d831 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix: ETag-Values MUST be quoted according to W3C spec

pull/702/head
Softworkz 9 years ago
parent e0e6c98e43
commit 319dcda4be

@ -275,7 +275,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer
/// <returns>System.Object.</returns>
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))
{

Loading…
Cancel
Save