fix twitter when all refreshed posts are gone
This commit is contained in:
parent
20ed4175e4
commit
9a86b45268
1
tasks.py
1
tasks.py
|
@ -186,6 +186,7 @@ def delete_from_account(account_id):
|
||||||
if account.service == 'twitter':
|
if account.service == 'twitter':
|
||||||
action = lib.twitter.delete
|
action = lib.twitter.delete
|
||||||
posts = refresh_posts(posts)
|
posts = refresh_posts(posts)
|
||||||
|
if posts:
|
||||||
eligible = random.choice(list( # nosec
|
eligible = random.choice(list( # nosec
|
||||||
(post for post in posts if
|
(post for post in posts if
|
||||||
(not account.policy_keep_favourites or not post.favourite)
|
(not account.policy_keep_favourites or not post.favourite)
|
||||||
|
|
Loading…
Reference in New Issue