Closed hoony9x closed 7 years ago
Below line was a problem:
this.frozen = (contest.freeze && now >= contest.freeze) && !(config.unfreeze || contest.unfreeze && now >= contest.unfreeze);
It's because of Javascript's Logical Operators doesn't always return a boolean value.
Solved by 0b0cd036951e7c47635bacb147c04875c3f70c65
This happens when freeze_time and unfreeze_time are not defined in DOMjudge. In this case, "noMoreUpdate" in "runs.json" sets to 'null' and spotboard says "scoreboard has been frozen".;