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

disable cache while debugging.

pull/6/head
kay.one 12 years ago
parent 576ea8560b
commit 040bfb08ce

@ -13,6 +13,11 @@ namespace NzbDrone.Api.Frontend
{
public bool IsCacheable(NancyContext context)
{
if (BuildInfo.IsDebug)
{
return false;
}
if (context.Request.Query.v == BuildInfo.Version) return true;
if (context.Request.Path.StartsWith("/api", StringComparison.CurrentCultureIgnoreCase)) return false;

Loading…
Cancel
Save