mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Keep statuses bookmarked by local users in tootctl statuses remove (#12818)
This commit is contained in:
parent
5b9f01aec0
commit
3b08535463
1 changed files with 2 additions and 0 deletions
|
@ -48,6 +48,8 @@ module Mastodon
|
||||||
scope = scope.where('id NOT IN (SELECT statuses1.reblog_of_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.reblog_of_id AND (statuses1.uri IS NULL OR statuses1.local OR statuses1.id >= ?))', max_id)
|
scope = scope.where('id NOT IN (SELECT statuses1.reblog_of_id FROM statuses AS statuses1 WHERE statuses.id = statuses1.reblog_of_id AND (statuses1.uri IS NULL OR statuses1.local OR statuses1.id >= ?))', max_id)
|
||||||
# Skip statuses favourited by local users
|
# Skip statuses favourited by local users
|
||||||
scope = scope.where('id NOT IN (SELECT favourites.status_id FROM favourites WHERE statuses.id = favourites.status_id AND favourites.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
|
scope = scope.where('id NOT IN (SELECT favourites.status_id FROM favourites WHERE statuses.id = favourites.status_id AND favourites.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
|
||||||
|
# Skip statuses bookmarked by local users
|
||||||
|
scope = scope.where('id NOT IN (SELECT bookmarks.status_id FROM bookmarks WHERE statuses.id = bookmarks.status_id AND bookmarks.account_id IN (SELECT accounts.id FROM accounts WHERE domain IS NULL))')
|
||||||
|
|
||||||
unless options[:clean_followed]
|
unless options[:clean_followed]
|
||||||
# Skip accounts followed by local accounts
|
# Skip accounts followed by local accounts
|
||||||
|
|
Loading…
Reference in a new issue