do make sure we also backfill users from reblogs
This commit is contained in:
parent
a357470328
commit
785499ab82
1 changed files with 4 additions and 0 deletions
|
@ -80,6 +80,10 @@ def pull_context(
|
|||
mentioned_users = mentioned_users + [toot['account']]
|
||||
if(len(toot['mentions'])):
|
||||
mentioned_users = mentioned_users + toot['mentions']
|
||||
if(toot['reblog'] != None):
|
||||
mentioned_users = mentioned_users + [toot['reblog']['account']]
|
||||
if(len(toot['reblog']['mentions'])):
|
||||
mentioned_users = mentioned_users + toot['reblog']['mentions']
|
||||
|
||||
add_user_posts(server, access_token, filter_known_users(mentioned_users, all_known_users), recently_checked_users, all_known_users, seen_urls)
|
||||
|
||||
|
|
Loading…
Reference in a new issue