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

lolsob-rspec
Eugen Rochko 2019-03-03 23:41:30 +01:00 committed by GitHub
parent 4a3acdc916
commit 06511d1942
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