diff --git a/ArchiSteamFarm/ArchiWebHandler.cs b/ArchiSteamFarm/ArchiWebHandler.cs index 68ace8112..25213b0c5 100644 --- a/ArchiSteamFarm/ArchiWebHandler.cs +++ b/ArchiSteamFarm/ArchiWebHandler.cs @@ -385,8 +385,12 @@ namespace ArchiSteamFarm { List 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 result = new HashSet(apps.Count);