about summary refs log tree commit diff
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-03-14 14:04:07 +0100
committerGitHub <noreply@github.com>2019-03-14 14:04:07 +0100
commit6841d8fc7407ea0a665138b19c36eaacedda3630 (patch)
tree1f3b2dfe67e524b1b1ea9811007e0c025c8affd0
parent51e154f5e87968d6bb115e053689767ab33e80cd (diff)
Fix wrong method used in PollExpirationNotifyWorker (#10265)
-rw-r--r--app/workers/poll_expiration_notify_worker.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/workers/poll_expiration_notify_worker.rb b/app/workers/poll_expiration_notify_worker.rb
index ae72298b8..e08f0c249 100644
--- a/app/workers/poll_expiration_notify_worker.rb
+++ b/app/workers/poll_expiration_notify_worker.rb
@@ -15,7 +15,7 @@ class PollExpirationNotifyWorker
     end
 
     # Notify local voters
-    poll.votes.includes(:account).map(&:account).filter(&:local?).each do |account|
+    poll.votes.includes(:account).map(&:account).select(&:local?).each do |account|
       NotifyService.new.call(account, poll)
     end
   rescue ActiveRecord::RecordNotFound