Browse Source

Fix BlockService trying to reject incorrect follow request (#11288)

Fixes #11148
pull/4/head
ThibG 4 years ago
committed by Eugen Rochko
parent
commit
4e1260feaa
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/block_service.rb

+ 1
- 1
app/services/block_service.rb View File

@ -8,7 +8,7 @@ class BlockService < BaseService
UnfollowService.new.call(account, target_account) if account.following?(target_account)
UnfollowService.new.call(target_account, account) if target_account.following?(account)
RejectFollowService.new.call(account, target_account) if target_account.requested?(account)
RejectFollowService.new.call(target_account, account) if target_account.requested?(account)
block = account.block!(target_account)

Loading…
Cancel
Save