Fix OTP not working in very custom start
This commit is contained in:
parent
cc051aea4c
commit
9682b95001
3
V6.py
3
V6.py
|
@ -836,6 +836,9 @@ def very_custom_start(json):
|
||||||
cred = g._cred[i]
|
cred = g._cred[i]
|
||||||
g._mail = cred[0]
|
g._mail = cred[0]
|
||||||
g._password = cred[1]
|
g._password = cred[1]
|
||||||
|
if cred[2] != '':
|
||||||
|
g._otp = TOTP(cred[2])
|
||||||
|
|
||||||
start = False
|
start = False
|
||||||
for j in ["unban", "tout", "pc", "mobile", "daily"]:
|
for j in ["unban", "tout", "pc", "mobile", "daily"]:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue