mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-01 14:10:53 +00:00
Misc
This commit is contained in:
@@ -122,6 +122,7 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
});
|
||||
|
||||
// Max games count is affected by valid AppIDs only, therefore gameName alone doesn't need exclusive slot
|
||||
maxGamesCount++;
|
||||
}
|
||||
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user