Increase MAX_SIGNIN_ATTEMPTS to 3

This commit is contained in:
Maks Snegov 2024-04-27 22:47:10 -07:00
parent 90a58961d4
commit f580244a5d

View File

@ -2,7 +2,7 @@
// All rights reserved. // All rights reserved.
const pathnameRegex = /^\/\w{2}-\w{2}\/n?iv/; const pathnameRegex = /^\/\w{2}-\w{2}\/n?iv/;
const MAX_SIGNIN_ATTEMPTS = 1; const MAX_SIGNIN_ATTEMPTS = 3;
const PAGE_WAIT_TIME = 3792; const PAGE_WAIT_TIME = 3792;
const MINUTE = 60; const MINUTE = 60;
const RANDOM_JITTER = 0.1; const RANDOM_JITTER = 0.1;