This commit is contained in:
JustArchi
2018-03-06 10:14:48 +01:00
parent a91bbc4a03
commit 8ec900147e
2 changed files with 2 additions and 1 deletions

View File

@@ -122,6 +122,7 @@ namespace ArchiSteamFarm {
}
});
// Max games count is affected by valid AppIDs only, therefore gameName alone doesn't need exclusive slot
maxGamesCount++;
}

View File

@@ -4019,7 +4019,7 @@ namespace ArchiSteamFarm {
StringBuilder gameName = new StringBuilder();
foreach (string game in games) {
if (!uint.TryParse(game, out uint gameID)) {
if (!uint.TryParse(game, out uint gameID) || (gameID == 0)) {
gameName.Append((gameName.Length > 0 ? " " : "") + game);
continue;
}