Fix account domain block not properly unfollowing accounts from domain (#14304)

Fix #14303
This commit is contained in:
Eugen Rochko 2020-07-13 19:33:10 +02:00 committed by GitHub
parent 0be60c5d05
commit bd73623069

View file

@ -19,7 +19,7 @@ class AfterBlockDomainFromAccountService < BaseService
private private
def remove_follows! def remove_follows!
@account.active_relationships.where(account: Account.where(domain: @domain)).includes(:target_account).reorder(nil).find_each do |follow| @account.active_relationships.where(target_account: Account.where(domain: @domain)).includes(:target_account).reorder(nil).find_each do |follow|
UnfollowService.new.call(@account, follow.target_account) UnfollowService.new.call(@account, follow.target_account)
end end
end end