Don't list games that don't have an archive
This commit is contained in:
parent
b797e80cd8
commit
09df7a8997
1 changed files with 2 additions and 1 deletions
|
@ -74,7 +74,8 @@ namespace LANCommander.PlaynitePlugin
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
var games = LANCommander
|
var games = LANCommander
|
||||||
.GetGames();
|
.GetGames()
|
||||||
|
.Where(g => g.Archives != null && g.Archives.Count() > 0);
|
||||||
|
|
||||||
foreach (var game in games)
|
foreach (var game in games)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue