fix: rename isEnabled to enabled in DQL query

This commit is contained in:
Maël Gangloff
2025-10-25 20:03:51 +02:00
parent 76da56dd83
commit 557ca7d71a

View File

@@ -29,7 +29,7 @@ class WatchlistRepository extends ServiceEntityRepository
{
return $this->createQueryBuilder('w')
->select()
->where('w.isEnabled = true')
->where('w.enabled = true')
->getQuery()->execute();
}