Browse Source

fix unreliable post boosting

main
xenua 2 years ago
parent
commit
ff5bce985f
Signed by: xenua
GPG Key ID: 8F93B68BD37255B8
  1. 9
      main.py

9
main.py

@ -89,8 +89,13 @@ def main():
i += 1 i += 1
m.status_unreblog(t["id"]) m.status_unreblog(t["id"])
sleep(10) while True:
m.status_reblog(t["id"]) try:
sleep(5)
m.status_reblog(t["id"])
break
except:
...
typer.echo(f"boosting! running for {delay*i} minutes...") typer.echo(f"boosting! running for {delay*i} minutes...")

Loading…
Cancel
Save