mirror of
https://github.com/JustArchiNET/ArchiSteamFarm
synced 2024-11-10 07:04:27 +00:00
Correct MaxConfirmationsPerRequest
This commit is contained in:
parent
1ee9fec845
commit
ef5b108b34
1 changed files with 1 additions and 1 deletions
|
@ -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',
|
||||
|
|
Loading…
Reference in a new issue