Skip to content

Commit

Permalink
Fix missing change from array to DTO.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicky Gerritsen committed Feb 28, 2024
1 parent b038ed0 commit 044b085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/src/Service/SubmissionService.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public function getSubmissionList(
} else {
$queryBuilder
->andWhere('ej.result = :externalresult')
->setParameter('externalresult', $restrictions['external_result']);
->setParameter('externalresult', $restrictions->externalResult);
}
}

Expand Down

0 comments on commit 044b085

Please sign in to comment.