Don't allow people to follow people they blocked without unblocking first
This commit is contained in:
parent
eee8afb0b7
commit
0af3401553
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ class FollowService < BaseService
|
|||
target_account = follow_remote_account_service.call(uri)
|
||||
|
||||
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
|
||||
raise Mastodon::NotPermitted if target_account.blocking?(source_account)
|
||||
raise Mastodon::NotPermitted if target_account.blocking?(source_account) || source_account.blocking?(target_account)
|
||||
|
||||
if target_account.locked?
|
||||
request_follow(source_account, target_account)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue