diff options
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/follow_remote_account_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/follow_remote_account_service.rb b/app/services/follow_remote_account_service.rb index 01e07e2e9..f05668420 100644 --- a/app/services/follow_remote_account_service.rb +++ b/app/services/follow_remote_account_service.rb @@ -10,7 +10,7 @@ class FollowRemoteAccountService < BaseService return Account.find_local(username) if domain == Rails.configuration.x.local_domain - account = Account.find_by(username: username, domain: domain) + account = Account.find_remote(username, domain) if account.nil? account = Account.new(username: username, domain: domain) |