Skip to content

Commit 691584b

Browse files
committed
handle case if std dev is some how 0
1 parent a489e9f commit 691584b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Models/ContestJudgeVote.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function calculateScore(): void
5050
$judge = ContestJudge::where(['contest_id' => $this->entry->contest_id, 'user_id' => $this->user_id])->first();
5151

5252
if ($judge->std_dev !== null) {
53-
$this->update(['total_score_std' => ($this->totalScore() - $judge->mean) / $judge->std_dev]);
53+
$this->update(['total_score_std' => $judge->std_dev === 0.0 ? 0 : ($this->totalScore() - $judge->mean) / $judge->std_dev]);
5454
}
5555
}
5656
}

0 commit comments

Comments
 (0)