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'])