mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 13:33:34 -07:00
fixed broken signalr reference.
This commit is contained in:
parent
c59fe4e674
commit
d13a56df01
2 changed files with 6 additions and 4 deletions
|
@ -23,7 +23,7 @@ namespace NzbDrone.Common
|
|||
{
|
||||
Logger.Trace("Finding process with Id:{0}", id);
|
||||
|
||||
var processInfo = ConvertToProcessInfo(Process.GetProcesses().Where(p => p.Id == id).FirstOrDefault());
|
||||
var processInfo = ConvertToProcessInfo(Process.GetProcesses().FirstOrDefault(p => p.Id == id));
|
||||
|
||||
if (processInfo == null)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue