diff --git a/main.py b/main.py index 5589efa..70e15d9 100755 --- a/main.py +++ b/main.py @@ -89,8 +89,13 @@ def main(): i += 1 m.status_unreblog(t["id"]) - sleep(10) - m.status_reblog(t["id"]) + while True: + try: + sleep(5) + m.status_reblog(t["id"]) + break + except: + ... typer.echo(f"boosting! running for {delay*i} minutes...")