about summary refs log tree commit diff
path: root/app/workers/authorize_follow_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/authorize_follow_worker.rb')
-rw-r--r--app/workers/authorize_follow_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/authorize_follow_worker.rb b/app/workers/authorize_follow_worker.rb
index 0d5014624..f57900fa5 100644
--- a/app/workers/authorize_follow_worker.rb
+++ b/app/workers/authorize_follow_worker.rb
@@ -7,7 +7,7 @@ class AuthorizeFollowWorker
     source_account = Account.find(source_account_id)
     target_account = Account.find(target_account_id)
 
-    AuthorizeFollowService.new.call(source_account, target_account)
+    AuthorizeFollowService.new.call(source_account, target_account, bypass_limit: true)
   rescue ActiveRecord::RecordNotFound
     true
   end