We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a489e9f commit 691584bCopy full SHA for 691584b
app/Models/ContestJudgeVote.php
@@ -50,7 +50,7 @@ public function calculateScore(): void
50
$judge = ContestJudge::where(['contest_id' => $this->entry->contest_id, 'user_id' => $this->user_id])->first();
51
52
if ($judge->std_dev !== null) {
53
- $this->update(['total_score_std' => ($this->totalScore() - $judge->mean) / $judge->std_dev]);
+ $this->update(['total_score_std' => $judge->std_dev === 0.0 ? 0 : ($this->totalScore() - $judge->mean) / $judge->std_dev]);
54
}
55
56
0 commit comments