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

_output folder is considered a non-prodction folder

pull/3113/head
Keivan Beigi 10 years ago
parent 98acd0d886
commit 9b16e3b538

@ -108,8 +108,19 @@ namespace NzbDrone.Common.EnvironmentInfo
}
try
{
var currentAssmeblyLocation = typeof(RuntimeInfoBase).Assembly.Location;
if(currentAssmeblyLocation.ToLower().Contains("_output"))return false;
}
catch
{
}
string lowerCurrentDir = Directory.GetCurrentDirectory().ToLower();
if (lowerCurrentDir.Contains("teamcity")) return false;
if (lowerCurrentDir.Contains("_output")) return false;
if (lowerCurrentDir.StartsWith("/run/")) return false;
return true;

Loading…
Cancel
Save