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 ee5a4030f7
commit 98b3b80d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class AfterBlockDomainFromAccountService < BaseService
private
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)
end
end