0
0
Fork 0

Reduce wasted work in RemoveStatusService due to inactive followers (#7672)

This commit is contained in:
Eugen Rochko 2018-05-29 22:55:33 +02:00 committed by GitHub
parent 7706ed038f
commit 461542784b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 6 deletions

View file

@ -53,7 +53,7 @@ class BatchedRemoveStatusService < BaseService
end
def unpush_from_home_timelines(account, statuses)
recipients = account.followers.local.to_a
recipients = account.followers_for_local_distribution.to_a
recipients << account if account.local?
@ -65,7 +65,7 @@ class BatchedRemoveStatusService < BaseService
end
def unpush_from_list_timelines(account, statuses)
account.lists.select(:id, :account_id).each do |list|
account.lists_for_local_distribution.select(:id, :account_id).each do |list|
statuses.each do |status|
FeedManager.instance.unpush_from_list(list, status)
end