still dont know

This commit is contained in:
piair 2023-05-04 20:32:19 +02:00
parent d946298a38
commit f2d08e9137
2 changed files with 4 additions and 2 deletions

4
V5.py
View File

@ -412,7 +412,6 @@ def login_part_2(ldriver, cookies = False):
if ('Abuse' in ldriver.current_url) :
raise Banned()
if ('identity' in ldriver.current_url) :
custom_sleep(100)
raise Identity()
if ('notice' in ldriver.current_url) :
ldriver.find_element(By.ID, "id__0").click()
@ -681,6 +680,9 @@ def daily_routine(custom = False):
except Banned :
log_error("This account is locked. Fix that. (-U ?)", driver)
return()
except Identity :
log_error("This account has an issue. Fix that.", driver)
return()
try:
all_cards()

View File

@ -1 +1 @@
v5.10.1
v5.10.2