diff --git a/ArchiSteamFarm/ArchiWebHandler.cs b/ArchiSteamFarm/ArchiWebHandler.cs index db76831bb..77196d127 100644 --- a/ArchiSteamFarm/ArchiWebHandler.cs +++ b/ArchiSteamFarm/ArchiWebHandler.cs @@ -105,7 +105,7 @@ namespace ArchiSteamFarm { } private static bool ParseItems(Dictionary> descriptions, List input, HashSet output) { - if ((descriptions == null) || (descriptions.Count == 0) || (input == null) || (input.Count == 0) || (output == null)) { + if ((descriptions == null) || (input == null) || (input.Count == 0) || (output == null)) { Logging.LogNullError(nameof(descriptions) + " || " + nameof(input) + " || " + nameof(output)); return false; }