diff options
Diffstat (limited to 'app/services')
-rw-r--r-- | app/services/remove_status_service.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 920774156..a5281f586 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -33,10 +33,8 @@ class RemoveStatusService < BaseService end def remove_from_followers - redis.pipelined do - @account.followers.local.find_each do |follower| - unpush(:home, follower, @status) - end + @account.followers.local.find_each do |follower| + unpush(:home, follower, @status) end end |