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

Changed args to find process information by id

pull/56/head
Mark McDowall 11 years ago
parent a13d187473
commit c0fb53c7f6

@ -21,7 +21,7 @@ namespace NzbDrone.Mono
return monoProcesses.Where(c =>
{
var processArgs = _processProvider.StartAndCapture("ps", String.Format("--pid {0} -o args=", c.Id));
var processArgs = _processProvider.StartAndCapture("ps", String.Format("-p {0} -o args=", c.Id));
return processArgs.Standard.Any(p => p.Contains(ProcessProvider.NZB_DRONE_PROCESS_NAME + ".exe") ||
p.Contains(ProcessProvider.NZB_DRONE_CONSOLE_PROCESS_NAME + ".exe"));

Loading…
Cancel
Save