Don't list games that don't have an archive

dashboard
Pat Hartl 2023-01-16 19:56:13 -06:00
parent b797e80cd8
commit 09df7a8997
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ namespace LANCommander.PlaynitePlugin
try
{
var games = LANCommander
.GetGames();
.GetGames()
.Where(g => g.Archives != null && g.Archives.Count() > 0);
foreach (var game in games)
{