From af956f22e9c73082044726cb07724fdba2b7a937 Mon Sep 17 00:00:00 2001 From: JustArchi Date: Fri, 1 Jul 2016 16:34:32 +0200 Subject: [PATCH] Allow empty descriptions --- ArchiSteamFarm/ArchiWebHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }