From 4716312c3f933c7ac79db9c9a0da5b92ebb568f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Domeradzki?= Date: Tue, 7 Oct 2025 21:35:01 +0200 Subject: [PATCH] Handle super rare login failure --- ArchiSteamFarm/Steam/Bot.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/ArchiSteamFarm/Steam/Bot.cs b/ArchiSteamFarm/Steam/Bot.cs index 704d771f8..3da692de9 100644 --- a/ArchiSteamFarm/Steam/Bot.cs +++ b/ArchiSteamFarm/Steam/Bot.cs @@ -2323,6 +2323,7 @@ public sealed class Bot : IAsyncDisposable, IDisposable { case EResult.Busy: // No clue, might be some internal gateway timeout, just try again case EResult.DuplicateRequest: // This will happen if user reacts to popup and tries to use the code afterwards, we have the code saved in ASF, we just need to try again case EResult.Expired: // Usually means refresh token is no longer authorized to use, otherwise just try again + case EResult.Fail: // Usually some internal issue during authorization, just try again case EResult.FileNotFound: // User denied approval despite telling us that they accepted it, just try again case EResult.InvalidPassword: // Usually means refresh token is no longer authorized to use, otherwise just try again case EResult.NoConnection: // Usually network issues