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

Fix #14303
master
Eugen Rochko 4 years ago committed by GitHub
parent ee5a4030f7
commit 98b3b80d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      app/services/after_block_domain_from_account_service.rb

@ -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

Loading…
Cancel
Save