about summary refs log tree commit diff
path: root/app/services/resolve_remote_account_service.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2017-09-14 00:05:25 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-09-14 00:05:25 +0200
commitaf00220d795670e10bc8c7378837c4a5a287b556 (patch)
tree2af132699498d374150f27351d2d9d07db9b14fb /app/services/resolve_remote_account_service.rb
parent9239e4ce4d4e958e62552d4a01183d0295c020f5 (diff)
Fix refollowing (#4931)
* Make RefollowWorker ActivityPub-only to avoid potential identifier mismatches

* Don't call RefollowWorker on new accounts
Diffstat (limited to 'app/services/resolve_remote_account_service.rb')
-rw-r--r--app/services/resolve_remote_account_service.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/app/services/resolve_remote_account_service.rb b/app/services/resolve_remote_account_service.rb
index 753601501..7031c98f5 100644
--- a/app/services/resolve_remote_account_service.rb
+++ b/app/services/resolve_remote_account_service.rb
@@ -85,10 +85,8 @@ class ResolveRemoteAccountService < BaseService
 
   def handle_ostatus
     create_account if @account.nil?
-    old_public_key = @account.public_key
     update_account
     update_account_profile if update_profile?
-    RefollowWorker.perform_async(@account.id) if old_public_key != @account.public_key
   end
 
   def update_profile?