about summary refs log tree commit diff
path: root/app/services/resolve_account_service.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-02-25 18:05:52 +0100
committerGitHub <noreply@github.com>2020-02-25 18:05:52 +0100
commit9ee8e1add9f937a75c2514ca88958ff02cf5573c (patch)
treee6c97dfd5a14860b9c825b1c84fb1dd84ada6581 /app/services/resolve_account_service.rb
parent0d41fef50618e3d58255b4f4082326e83ff06982 (diff)
parent2f2b48b227304d0f0a28dd4867e84af10b8097ad (diff)
Merge pull request #1289 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/services/resolve_account_service.rb')
-rw-r--r--app/services/resolve_account_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/resolve_account_service.rb b/app/services/resolve_account_service.rb
index 12e6544a0..1ad9ed407 100644
--- a/app/services/resolve_account_service.rb
+++ b/app/services/resolve_account_service.rb
@@ -99,7 +99,7 @@ class ResolveAccountService < BaseService
       if lock.acquired?
         @account = Account.find_remote(@username, @domain)
 
-        next if (@account.present? && !@account.activitypub?) || actor_json.nil?
+        next if actor_json.nil?
 
         @account = ActivityPub::ProcessAccountService.new.call(@username, @domain, actor_json)
       else