mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 15:14:41 +00:00
Add workaround for https://github.com/SteamRE/SteamKit/issues/594
This commit is contained in:
parent
5e38d176cd
commit
8d1d0f89a3
1 changed files with 6 additions and 2 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue