Fix account domain block not properly unfollowing accounts from domain (#14304)
Fix #14303
This commit is contained in:
parent
ee5a4030f7
commit
98b3b80d6b
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue