Show primary actions for old manifests that may not have game ID

This commit is contained in:
Pat Hartl 2025-02-28 17:29:32 -06:00
parent 27f88f801f
commit b5d39ca18c

View file

@ -111,7 +111,7 @@ else
return;
}
var primaryActions = actions.Where(a => a.IsPrimaryAction && LibraryService.IsInstalled(a.GameId));
var primaryActions = actions.Where(a => a.IsPrimaryAction && (LibraryService.IsInstalled(a.GameId) || a.GameId == Guid.Empty));
if (primaryActions.Count() == 0)
{