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

Check if process HasExited before getting ProcessInfo.

Fixes ND-8.
pull/6/head
Mark McDowall 13 years ago
parent a3f2ef6ec6
commit b1aeb0a973

@ -91,7 +91,7 @@ namespace NzbDrone.Common
private static ProcessInfo ConvertToProcessInfo(Process process)
{
if (process == null || process.Id <= 0) return null;
if (process == null || process.Id <= 0 || process.HasExited) return null;
return new ProcessInfo
{

Loading…
Cancel
Save