about summary refs log tree commit diff
path: root/app/services/process_interaction_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-02-24 03:05:40 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-02-24 03:05:40 +0100
commit10eb47a33e2f0c7f0eba5302319c4321db41294c (patch)
tree9df1f0406af5706fa33448daed881cccfb6103ad /app/services/process_interaction_service.rb
parent784b9cca6ae490216f45e55786b96c5e03257373 (diff)
Do not PuSH-subscribe to remote accounts when creating them for salmon
Diffstat (limited to 'app/services/process_interaction_service.rb')
-rw-r--r--app/services/process_interaction_service.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/process_interaction_service.rb b/app/services/process_interaction_service.rb
index cb149f9ab..ee04f01af 100644
--- a/app/services/process_interaction_service.rb
+++ b/app/services/process_interaction_service.rb
@@ -13,7 +13,7 @@ class ProcessInteractionService
     account  = Account.find_by(username: username, domain: domain)
 
     if account.nil?
-      account = follow_remote_account_service.("acct:#{username}@#{domain}")
+      account = follow_remote_account_service.("acct:#{username}@#{domain}", false)
       return if account.nil?
     end