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.
2 parents d84431b + d41f9e9 commit fa03c40Copy full SHA for fa03c40
keyauth.py
@@ -61,6 +61,16 @@ def init(self):
61
62
response = encryption.decrypt(response, self.secret, init_iv)
63
json = jsond.loads(response)
64
+
65
+ if json["message"] == "invalidver":
66
+ if json["download"] != "":
67
+ print("New Version Available")
68
+ download_link = json["download"]
69
+ os.system(f"start {download_link}")
70
+ sys.exit()
71
+ else:
72
+ print("Invalid Version, Contact owner to add download link to latest app version")
73
74
75
if json["message"] == "invalidver":
76
if json["download"] != "":
0 commit comments