Browse Source

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

Fix #14303
master
Eugen Rochko 3 years ago
committed by GitHub
parent
commit
98b3b80d6b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/after_block_domain_from_account_service.rb

+ 1
- 1
app/services/after_block_domain_from_account_service.rb 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

Loading…
Cancel
Save