diff --git a/ArchiSteamFarm/Steam/Integration/SteamUtilities.cs b/ArchiSteamFarm/Steam/Integration/SteamUtilities.cs index 87b3bca18..c9d9a5515 100644 --- a/ArchiSteamFarm/Steam/Integration/SteamUtilities.cs +++ b/ArchiSteamFarm/Steam/Integration/SteamUtilities.cs @@ -71,6 +71,10 @@ public static class SteamUtilities { internal static EResult? InterpretError(string errorText) { ArgumentException.ThrowIfNullOrEmpty(errorText); + if (errorText.StartsWith("batched request timeout", StringComparison.Ordinal)) { + return EResult.RemoteCallFailed; + } + int startIndex = errorText.LastIndexOf('('); if (startIndex < 0) {