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

Fixes #11148
这个提交包含在:
ThibG 2019-07-11 14:50:27 +02:00 提交者 Eugen Rochko
父节点 8066717558
当前提交 6782922584

查看文件

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