Fix exception after installing from context menu

This commit is contained in:
Pat Hartl 2024-08-01 17:23:51 -05:00
parent fcb77b8cd9
commit 6a13d3ef33

View file

@ -225,7 +225,9 @@ namespace LANCommander.Client.Services
public bool IsRunning(LibraryItem libraryItem)
{
return IsRunning(libraryItem.Key);
if (libraryItem != null)
return IsRunning(libraryItem.Key);
return false;
}
public bool IsRunning(Guid id)