mirror of https://github.com/Radarr/Radarr
Check if process HasExited before getting ProcessInfo.
Fixes ND-8.
This commit is contained in:
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…
Reference in New Issue