Fix empty votes arbitrarily increasing voters count in polls (#18526)

This commit is contained in:
Eugen Rochko 2022-05-26 22:06:10 +02:00 committed by GitHub
parent e871725668
commit 49c6b3736a

View file

@ -7,6 +7,8 @@ class VoteService < BaseService
include Lockable include Lockable
def call(account, poll, choices) def call(account, poll, choices)
return if choices.empty?
authorize_with account, poll, :vote? authorize_with account, poll, :vote?
@account = account @account = account