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

added /run/ to none-production start paths.

pull/6/head
kay.one 12 years ago
parent 661ba97215
commit 9abd5c0e28

@ -64,7 +64,9 @@ namespace NzbDrone.Common.EnvironmentInfo
if (lowerProcessName.Contains("jetbrain")) return false;
if (lowerProcessName.Contains("resharper")) return false;
if (Directory.GetCurrentDirectory().ToLower().Contains("teamcity")) return false;
string lowerCurrentDir = Directory.GetCurrentDirectory().ToLower();
if (lowerCurrentDir.Contains("teamcity")) return false;
if (lowerCurrentDir.StartsWith("/run/")) return false;
return true;
}

Loading…
Cancel
Save