Skip to content

Commit

Permalink
[TASK] ci fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pixelmatseriks committed Nov 17, 2023
1 parent 1aa783b commit da858c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Repository/MediaUsageRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function findByQbankAndLocalId(int $qbankId, string $localId): array

$result = [];
foreach ($usages as $usage) {
if ($usage->getContext()['localID'] ?? '' === $localId) {
if (($usage->getContext()['localID'] ?? '') === $localId) {
$result[] = $usage;
}
}
Expand Down

0 comments on commit da858c5

Please sign in to comment.