Skip to content

Commit 0c86248

Browse files
authored
Add more sleep functions before error @apilol
Add more sleep functions so you can read errors
2 parents b93b5cc + c450f41 commit 0c86248

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

keyauth.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def init(self):
7777

7878
if response == "KeyAuth_Invalid":
7979
print("The application doesn't exist")
80+
time.sleep(5)
8081
os._exit(1)
8182

8283
response = encryption.decrypt(response, self.secret, init_iv)
@@ -91,6 +92,7 @@ def init(self):
9192
os._exit(1)
9293
else:
9394
print("Invalid Version, Contact owner to add download link to latest app version")
95+
time.sleep(5)
9496
os._exit(1)
9597

9698
if not json["success"]:
@@ -526,6 +528,7 @@ def changeUsername(self, username):
526528
print("successfully Changed Username")
527529
else:
528530
print(json["message"])
531+
time.sleep(5)
529532
os._exit(1)
530533

531534
def __do_request(self, post_data):

0 commit comments

Comments
 (0)