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

Fixed an issue where GetProcessByName could return a list containing null items.

pull/4/head
kay.one 13 years ago
parent 34206fc308
commit 7acb563c05

@ -37,7 +37,7 @@ namespace NzbDrone.Common
public virtual IEnumerable<ProcessInfo> GetProcessByName(string name)
{
return Process.GetProcessesByName(name).Select(ConvertToProcessInfo);
return Process.GetProcessesByName(name).Select(ConvertToProcessInfo).Where(p => p != null);
}
public virtual void Start(string path)

Loading…
Cancel
Save