Fix vote validation for polls with multiple choices (#10138)

This commit is contained in:
Eugen Rochko 2019-03-03 23:41:30 +01:00 committed by GitHub
parent 230a012f00
commit 8fe93b0701
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ class VoteValidator < ActiveModel::Validator
if vote.poll.multiple? && vote.poll.votes.where(account: vote.account, choice: vote.choice).exists?
vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
elsif vote.poll.votes.where(account: vote.account).exists?
elsif !vote.poll.multiple? && vote.poll.votes.where(account: vote.account).exists?
vote.errors.add(:base, I18n.t('polls.errors.already_voted'))
end
end