dont attempt to backfill reblogs, as we cannot
This commit is contained in:
parent
9f28ba2333
commit
a3f2b23022
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ def add_user_posts(server, access_token, followings, know_followings, all_known_
|
||||||
count = 0
|
count = 0
|
||||||
failed = 0
|
failed = 0
|
||||||
for post in posts:
|
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)
|
added = add_post_with_context(post, server, access_token, seen_urls)
|
||||||
if added is True:
|
if added is True:
|
||||||
seen_urls.add(post['url'])
|
seen_urls.add(post['url'])
|
||||||
|
|
Loading…
Reference in a new issue