Prevent delivery of new posts to suspended followers (#27509)

pull/33029/head
Claire 5 months ago committed by GitHub
parent 9d34146aaa
commit 04ce5939ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -16,7 +16,9 @@ class StatusReachFinder
private
def reached_account_inboxes
Account.where(id: reached_account_ids).inboxes
scope = Account.where(id: reached_account_ids)
scope.merge!(Account.without_suspended) unless unsafe?
scope.inboxes
end
def reached_account_ids

Loading…
Cancel
Save