From a3f2b230224b765975a0d522b4e7bae471d3fc76 Mon Sep 17 00:00:00 2001 From: nanos Date: Tue, 4 Apr 2023 17:00:35 +0100 Subject: [PATCH] dont attempt to backfill reblogs, as we cannot --- find_posts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find_posts.py b/find_posts.py index 03fa823..4c9d37f 100644 --- a/find_posts.py +++ b/find_posts.py @@ -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'])