We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d4096a commit c975c47Copy full SHA for c975c47
keyauth.py
@@ -524,8 +524,8 @@ def __do_request(self, post_data):
524
# Get the current time
525
current_time = datetime.now().timestamp()
526
527
- # Check if the timestamp is older than 15 seconds
528
- if current_time - unix_timestamp > 15:
+ # Check if the timestamp is older than 20 seconds
+ if current_time - unix_timestamp > 20:
529
print("Timestamp OLD")
530
time.sleep(3)
531
os._exit(1)
0 commit comments