fix bug that caused it to ignore all boosts, and all statuses that were not boosts

This commit is contained in:
Holly 2021-03-10 03:02:24 +00:00
parent 802b9d3906
commit d60c44a03c
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ async def listen(c, me):
if 'status' in status: continue
# Don't activate on boosts at all
if 'reblog' in status: continue
if 'reblog' in status and status['reblog'] is not None: continue
status_id = status['id']
status_author = '@' + status['account']['acct']