This commit is contained in:
JustArchi 2018-09-26 23:38:28 +02:00
parent 5e38d176cd
commit 8d1d0f89a3

View file

@ -385,8 +385,12 @@ namespace ArchiSteamFarm {
List<KeyValue> apps = response["applist"]["apps"].Children;
if ((apps == null) || (apps.Count == 0)) {
Bot.ArchiLogger.LogNullError(nameof(apps));
return null;
// TODO: Temporary workaround for https://github.com/SteamRE/SteamKit/issues/594
apps = response["apps"].Children;
if ((apps == null) || (apps.Count == 0)) {
Bot.ArchiLogger.LogNullError(nameof(apps));
return null;
}
}
HashSet<uint> result = new HashSet<uint>(apps.Count);