From ef5b108b349e0388bd434be9aaffdc3bc277be8a Mon Sep 17 00:00:00 2001 From: JustArchi Date: Fri, 29 Jul 2016 14:48:34 +0200 Subject: [PATCH] Correct MaxConfirmationsPerRequest --- ArchiSteamFarm/MobileAuthenticator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArchiSteamFarm/MobileAuthenticator.cs b/ArchiSteamFarm/MobileAuthenticator.cs index ae144bd3b..510109708 100644 --- a/ArchiSteamFarm/MobileAuthenticator.cs +++ b/ArchiSteamFarm/MobileAuthenticator.cs @@ -56,7 +56,7 @@ namespace ArchiSteamFarm { private const byte CodeDigits = 5; private const byte CodeInterval = 30; - private const byte MaxConfirmationsPerRequest = 30; // This is limit enforced by Valve + private const byte MaxConfirmationsPerRequest = 5; // This is limit enforced by Valve - using higher number might result in likeness of requests failing private static readonly char[] CodeCharacters = { '2', '3', '4', '5', '6', '7', '8', '9', 'B', 'C',