diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Controller/WallabagRestController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php index ab2c1181..4784cb01 100644 --- a/src/Wallabag/CoreBundle/Controller/WallabagRestController.php +++ b/src/Wallabag/CoreBundle/Controller/WallabagRestController.php | |||
@@ -45,7 +45,7 @@ class WallabagRestController extends Controller | |||
45 | ->getRepository('WallabagCoreBundle:Entry') | 45 | ->getRepository('WallabagCoreBundle:Entry') |
46 | ->findEntries(1, $isArchived, $isStarred, $isDeleted, $sort, $order); | 46 | ->findEntries(1, $isArchived, $isStarred, $isDeleted, $sort, $order); |
47 | 47 | ||
48 | if (is_null($entries)) { | 48 | if (!($entries)) { |
49 | throw $this->createNotFoundException(); | 49 | throw $this->createNotFoundException(); |
50 | } | 50 | } |
51 | 51 | ||