Browse Source

fix unreliable post boosting

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

7
main.py

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

Loading…
Cancel
Save