Fix wrong method used in PollExpirationNotifyWorker (#10265)
This commit is contained in:
parent
51e154f5e8
commit
6841d8fc74
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue