about summary refs log tree commit diff
path: root/app/validators
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2019-03-03 23:41:30 +0100
committerGitHub <noreply@github.com>2019-03-03 23:41:30 +0100
commit8fe93b0701ea754fe8727b1d4ef11f7a33903f81 (patch)
treede8cfb51bd3e3774e2624c711fe0c9ccbf5678de /app/validators
parent230a012f0090c496fc5cdb011bcc8ed732fd0f5c (diff)
Fix vote validation for polls with multiple choices (#10138)
Diffstat (limited to 'app/validators')
-rw-r--r--app/validators/vote_validator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/validators/vote_validator.rb b/app/validators/vote_validator.rb
index e2a68d1f3..2e1818bdb 100644
--- a/app/validators/vote_validator.rb
+++ b/app/validators/vote_validator.rb
@@ -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