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 28c3904 commit 2b6afcdCopy full SHA for 2b6afcd
webapp/src/Controller/Jury/SubmissionController.php
@@ -1324,10 +1324,10 @@ protected function createVisualization(array $judgings): void
1324
$numRequested = 0;
1325
foreach ($judgings as $judging) {
1326
$judgingId = $judging->getJudgingid();
1327
- elseif ($judging->getVisualization()) {
1328
- $alreadyRequested[] = $judgingId;
1329
if ($judging->getResult() === null) {
1330
$inProgress[] = $judgingId;
+ } elseif ($judging->getVisualization()) {
+ $alreadyRequested[] = $judgingId;
1331
} elseif (!$judging->getValid()) {
1332
$invalidJudgings[] = $judgingId;
1333
} else {
0 commit comments