Skip to content

Commit ebe8f21

Browse files
cubercslnickygerritsen
authored andcommitted
fix verification_required type error
1 parent 7a0718c commit ebe8f21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webapp/src/Controller/PublicController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public function submissionsDataAction(Request $request, ?string $teamId, ?string
369369
}
370370
}
371371

372-
$verificationRequired = $this->config->get('verification_required');
372+
$verificationRequired = (bool)$this->config->get('verification_required');
373373

374374
foreach ($submissions as $submission) {
375375
$teamKey = 'team-' . $submission->getTeam()->getExternalid();

0 commit comments

Comments
 (0)