aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2020-04-26 14:09:16 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2020-04-26 14:09:16 +0200
commitfd30989a186db2a68afa1bd24b3cf39b8ce94ef3 (patch)
treeed662cd28d46fa213da35928a35f7e0cac41d3d9 /src/Wallabag/CoreBundle/Repository
parentefea7a352f947a3632095d95a7dfbb07b8fd86c7 (diff)
downloadwallabag-with-annotations-route.tar.gz
wallabag-with-annotations-route.tar.zst
wallabag-with-annotations-route.zip
Enhanced tests and changed routewith-annotations-route
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index 9f25ad4c..dab84635 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -535,7 +535,7 @@ class EntryRepository extends EntityRepository
535 $qb->leftJoin('e.tags', 't'); 535 $qb->leftJoin('e.tags', 't');
536 $qb->andWhere('t.id is null'); 536 $qb->andWhere('t.id is null');
537 break; 537 break;
538 case 'with_annotations': 538 case 'annotated':
539 $qb->leftJoin('e.annotations', 'a'); 539 $qb->leftJoin('e.annotations', 'a');
540 $qb->andWhere('a.id is not null'); 540 $qb->andWhere('a.id is not null');
541 break; 541 break;