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

fixed disabling of app.js cache.

pull/3113/head
Keivan Beigi 12 years ago
parent 9a5b700671
commit 8f37507ea1

@ -1,3 +1,4 @@
using System;
using Nancy;
using NzbDrone.Api.Extensions;
using NzbDrone.Common.EnvironmentInfo;
@ -19,7 +20,7 @@ namespace NzbDrone.Api.Frontend
return;
}
if (request.Url.Path.ToLower() == "app.js")
if (request.Url.Path.EndsWith("app.js", StringComparison.CurrentCultureIgnoreCase))
{
response.Headers.DisableCache();
return;

Loading…
Cancel
Save