Fix poll ending notifications being created for each vote (#15071)
On a poll ending, notifications were created for each vote instead of for each voter.gh/stable
parent
f1f0400adc
commit
c49805efb1
|
@ -15,7 +15,7 @@ class PollExpirationNotifyWorker
|
||||||
end
|
end
|
||||||
|
|
||||||
# Notify local voters
|
# Notify local voters
|
||||||
poll.votes.includes(:account).map(&:account).select(&:local?).each do |account|
|
poll.votes.includes(:account).group(:account_id).select(:account_id).map(&:account).select(&:local?).each do |account|
|
||||||
NotifyService.new.call(account, :poll, poll)
|
NotifyService.new.call(account, :poll, poll)
|
||||||
end
|
end
|
||||||
rescue ActiveRecord::RecordNotFound
|
rescue ActiveRecord::RecordNotFound
|
||||||
|
|
Reference in New Issue