Skip to content
Snippets Groups Projects
Commit 4b460bc5 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix #4852 - Check if already requested from FollowService (#4855)

parent 7ca173be
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ class FollowService < BaseService
raise ActiveRecord::RecordNotFound if target_account.nil? || target_account.id == source_account.id || target_account.suspended?
raise Mastodon::NotPermittedError if target_account.blocking?(source_account) || source_account.blocking?(target_account)
return if source_account.following?(target_account)
return if source_account.following?(target_account) || source_account.requested?(target_account)
if target_account.locked? || target_account.activitypub?
request_follow(source_account, target_account)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment