We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88093de commit 05d0f98Copy full SHA for 05d0f98
webapp/src/Service/ExternalContestSourceService.php
@@ -200,6 +200,9 @@ public function getContestStartTime(): ?float
200
if (isset($this->cachedContestData->startTime)) {
201
return Utils::toEpochFloat($this->cachedContestData->startTime);
202
} else {
203
+ if (empty($this->logger)) {
204
+ $this->configureLogger();
205
+ }
206
$this->logger->warning('Contest has no start time, is the contest paused?');
207
return null;
208
}
0 commit comments