about summary refs log tree commit diff
path: root/app/models/follow_request.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-03-24 12:36:26 +0100
committerGitHub <noreply@github.com>2019-03-24 12:36:26 +0100
commit45b849bad98ffad9ce9ce39f1aa984ca4b7329f9 (patch)
tree7b5f62e3793b3aa08dc4ed4237ee7cfd96a82da7 /app/models/follow_request.rb
parent0f9278c3d35819635504d397ce43823c0ee1125c (diff)
Fix MergeWorker being queued for remote users (#10355)
Diffstat (limited to 'app/models/follow_request.rb')
-rw-r--r--app/models/follow_request.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/follow_request.rb b/app/models/follow_request.rb
index c5451a050..96ac7eaa5 100644
--- a/app/models/follow_request.rb
+++ b/app/models/follow_request.rb
@@ -26,7 +26,7 @@ class FollowRequest < ApplicationRecord
 
   def authorize!
     account.follow!(target_account, reblogs: show_reblogs, uri: uri)
-    MergeWorker.perform_async(target_account.id, account.id)
+    MergeWorker.perform_async(target_account.id, account.id) if account.local?
     destroy!
   end