We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8618b01 commit 5d26652Copy full SHA for 5d26652
ArchiSteamFarm/Steam/Integration/ArchiWebHandler.cs
@@ -1548,6 +1548,11 @@ internal async Task<bool> AcknowledgeTradeRestrictions() {
1548
}
1549
1550
switch (response.StatusCode) {
1551
+ case HttpStatusCode.BadGateway:
1552
+ case HttpStatusCode.NotFound:
1553
+ case HttpStatusCode.ServiceUnavailable:
1554
+ // Steam maintenance as usual
1555
+ return (EResult.Timeout, EPurchaseResultDetail.Timeout);
1556
case HttpStatusCode.Forbidden:
1557
// Let's convert this into something reasonable
1558
return (EResult.AccessDenied, EPurchaseResultDetail.InvalidPackage);
0 commit comments