about summary refs log tree commit diff
path: root/app/workers/refollow_worker.rb
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2021-01-06 22:03:23 +0100
committerGitHub <noreply@github.com>2021-01-06 22:03:23 +0100
commitd42e7e01dcd464f80637682d4eee6e5a7f36f26e (patch)
tree3a594f4d232cad40fa268d66539498db2ea217e2 /app/workers/refollow_worker.rb
parent225c934a1b66e2fcbedbda7936666c1ca3c9a04b (diff)
parent55e84f9125608f12a7d29ec9bf9240e9a48cf4e5 (diff)
Merge pull request #1482 from ThibG/glitch-soc/merge-upstream
Merge upstream changes
Diffstat (limited to 'app/workers/refollow_worker.rb')
-rw-r--r--app/workers/refollow_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/refollow_worker.rb b/app/workers/refollow_worker.rb
index 98940680d..319b00109 100644
--- a/app/workers/refollow_worker.rb
+++ b/app/workers/refollow_worker.rb
@@ -19,7 +19,7 @@ class RefollowWorker
 
       # Schedule re-follow
       begin
-        FollowService.new.call(follower, target_account, reblogs: reblogs, notify: notify)
+        FollowService.new.call(follower, target_account, reblogs: reblogs, notify: notify, bypass_limit: true)
       rescue Mastodon::NotPermittedError, ActiveRecord::RecordNotFound, Mastodon::UnexpectedResponseError, HTTP::Error, OpenSSL::SSL::SSLError
         next
       end