Skip to content

Commit

Permalink
dont attempt to backfill reblogs, as we cannot
Browse files Browse the repository at this point in the history
  • Loading branch information
nanos committed Apr 4, 2023
1 parent 9f28ba2 commit a3f2b23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion find_posts.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'])
Expand Down

0 comments on commit a3f2b23

Please sign in to comment.