mirror of
https://github.com/mastodon/mastodon.git
synced 2025-10-05 16:42:47 +00:00
Reject follow requests of blocked users (#10633)
This commit is contained in:
parent
80bbf40ff1
commit
b1a0322a06
|
@ -6,6 +6,7 @@ class BlockService < BaseService
|
||||||
|
|
||||||
UnfollowService.new.call(account, target_account) if account.following?(target_account)
|
UnfollowService.new.call(account, target_account) if account.following?(target_account)
|
||||||
UnfollowService.new.call(target_account, account) if target_account.following?(account)
|
UnfollowService.new.call(target_account, account) if target_account.following?(account)
|
||||||
|
RejectFollowService.new.call(account, target_account) if target_account.requested?(account)
|
||||||
|
|
||||||
block = account.block!(target_account)
|
block = account.block!(target_account)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user