Skip to content
Snippets Groups Projects
Commit 7ffd7f0b authored by Thomas Citharel's avatar Thomas Citharel
Browse files

Fix unable to vote with ConcurrentVoteException when ValueMax is null


Closes #276

Signed-off-by: default avatarThomas Citharel <tcit@tcit.fr>
parent 87b89bc6
No related branches found
No related tags found
No related merge requests found
......@@ -296,7 +296,7 @@ class PollService {
$best_choices = $this->computeBestChoices($votes);
foreach ($best_choices['y'] as $i => $nb_choice) {
// if for this option we have reached maximum value and user wants to add itself too
if ($nb_choice >= $poll->ValueMax && $user_choice[$i] === "2") {
if ($poll->ValueMax != null && $nb_choice >= $poll->ValueMax && $user_choice[$i] === "2") {
throw new ConcurrentVoteException();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment