diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-04-01 14:34:20 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2019-04-01 14:34:20 +0200 |
commit | c579ce2306297674c56376a2ab5c8ba66a272253 (patch) | |
tree | 03f8fdd7c7ee93fd0527d46f2690a81cf6d2d286 /src/Wallabag/ApiBundle/Controller | |
parent | 8a6456629814039cfc623cdb279bcba06dacff50 (diff) | |
download | wallabag-c579ce2306297674c56376a2ab5c8ba66a272253.tar.gz wallabag-c579ce2306297674c56376a2ab5c8ba66a272253.tar.zst wallabag-c579ce2306297674c56376a2ab5c8ba66a272253.zip |
Some cleanup
Also, do not run the hashed_url migration into a Doctrine migration
Diffstat (limited to 'src/Wallabag/ApiBundle/Controller')
-rw-r--r-- | src/Wallabag/ApiBundle/Controller/EntryRestController.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Wallabag/ApiBundle/Controller/EntryRestController.php b/src/Wallabag/ApiBundle/Controller/EntryRestController.php index 0ecf1a0e..ad43b1d4 100644 --- a/src/Wallabag/ApiBundle/Controller/EntryRestController.php +++ b/src/Wallabag/ApiBundle/Controller/EntryRestController.php | |||
@@ -52,7 +52,6 @@ class EntryRestController extends WallabagRestController | |||
52 | foreach ($hashedUrls as $hashedUrl) { | 52 | foreach ($hashedUrls as $hashedUrl) { |
53 | $res = $repo->findByHashedUrlAndUserId($hashedUrl, $this->getUser()->getId()); | 53 | $res = $repo->findByHashedUrlAndUserId($hashedUrl, $this->getUser()->getId()); |
54 | 54 | ||
55 | // $results[$url] = $this->returnExistInformation($res, $returnId); | ||
56 | $results[$hashedUrl] = $this->returnExistInformation($res, $returnId); | 55 | $results[$hashedUrl] = $this->returnExistInformation($res, $returnId); |
57 | } | 56 | } |
58 | 57 | ||