diff --git a/main.py b/main.py index 05ccc48..a7d8d20 100644 --- a/main.py +++ b/main.py @@ -40,6 +40,7 @@ def main(): if webhook_url != "": requests.post(webhook_url, data=status_str) + print(status_str) while True: print_str = "" @@ -114,6 +115,9 @@ def main(): refresh_jwt, access_jwt = update_refresh_jwt(refresh_jwt) time.sleep(last_sleep_min*60/3) + # Extra sleep to prevent clock desync + time.sleep(60) + pass def update_refresh_jwt(jwt: str) -> (str, str):