We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9876803 commit af15c96Copy full SHA for af15c96
1 file changed
modules/rpdl.py
@@ -233,6 +233,8 @@ def has_authenticated_tracker(res: bytes | dict):
233
res = json.loads(res)
234
if res.get("error") == "Token invalid.":
235
return False
236
+ if res.get("error").startswith("Token expired."):
237
+ return False
238
raise msgbox.Exc(
239
"Unknown response",
240
"RPDL sent an unknown response.",
0 commit comments