dont attempt to backfill reblogs, as we cannot

This commit is contained in:
nanos 2023-04-04 17:00:35 +01:00
parent 9f28ba2333
commit a3f2b23022

View file

@ -64,7 +64,7 @@ def add_user_posts(server, access_token, followings, know_followings, all_known_
count = 0
failed = 0
for post in posts:
if post['url'] != None and post['url'] not in seen_urls:
if post['reblog'] == None and post['url'] != None and post['url'] not in seen_urls:
added = add_post_with_context(post, server, access_token, seen_urls)
if added is True:
seen_urls.add(post['url'])