Skip to content

Commit

Permalink
fix error in preset repo
Browse files Browse the repository at this point in the history
  • Loading branch information
KaydenLiss committed Jan 11, 2024
1 parent efd0bca commit 6e8226b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Repository/PresetRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private function filterByTeam(QueryBuilder $queryBuilder, Team $team, bool $all
$ignored = $this->getIgnored($team);
if (count($ignored)) {
$queryBuilder
->andWhere('a.team NOT IN (:ignored)')
->andWhere('a NOT IN (:ignored)')
->setParameter('ignored', $ignored);
}
}
Expand Down

0 comments on commit 6e8226b

Please sign in to comment.