]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
CS 3245/head
authorJérémy Benoist <j0k3r@users.noreply.github.com>
Wed, 28 Jun 2017 07:18:22 +0000 (09:18 +0200)
committerGitHub <noreply@github.com>
Wed, 28 Jun 2017 07:18:22 +0000 (09:18 +0200)
src/Wallabag/ApiBundle/Controller/EntryRestController.php

index 9786c4d37ee37a6eecd6387fb2b2b59ae4ad3ba6..c7938633c742d79919decbafd97bb95e557d7ee8 100644 (file)
@@ -38,7 +38,7 @@ class EntryRestController extends WallabagRestController
     {
         $this->validateAuthentication();
 
-        $returnId = (null === $request->query->get('return_id')) ? 0 : (bool) $request->query->get('return_id');
+        $returnId = (null === $request->query->get('return_id')) ? false : (bool) $request->query->get('return_id');
         $urls = $request->query->get('urls', []);
 
         // handle multiple urls first
@@ -720,6 +720,6 @@ class EntryRestController extends WallabagRestController
             return $entry instanceof Entry ? $entry->getId() : null;
         }
 
-        return $entry instanceof Entry ? true : false;
+        return $entry instanceof Entry;
     }
 }