Skip to content

Commit af956f2

Browse files
committed
Allow empty descriptions
1 parent aac72d4 commit af956f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ArchiSteamFarm/ArchiWebHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private static Steam.Item.EType GetItemType(string name) {
105105
}
106106

107107
private static bool ParseItems(Dictionary<ulong, Tuple<uint, Steam.Item.EType>> descriptions, List<KeyValue> input, HashSet<Steam.Item> output) {
108-
if ((descriptions == null) || (descriptions.Count == 0) || (input == null) || (input.Count == 0) || (output == null)) {
108+
if ((descriptions == null) || (input == null) || (input.Count == 0) || (output == null)) {
109109
Logging.LogNullError(nameof(descriptions) + " || " + nameof(input) + " || " + nameof(output));
110110
return false;
111111
}

0 commit comments

Comments
 (0)