diff options
Diffstat (limited to 'src/Wallabag/ImportBundle')
-rw-r--r-- | src/Wallabag/ImportBundle/Import/PocketImport.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/ImportBundle/Import/PocketImport.php b/src/Wallabag/ImportBundle/Import/PocketImport.php index dd1c34ab..ef8f9eb5 100644 --- a/src/Wallabag/ImportBundle/Import/PocketImport.php +++ b/src/Wallabag/ImportBundle/Import/PocketImport.php | |||
@@ -117,9 +117,9 @@ class PocketImport implements ImportInterface | |||
117 | 117 | ||
118 | $existingEntry = $this->em | 118 | $existingEntry = $this->em |
119 | ->getRepository('WallabagCoreBundle:Entry') | 119 | ->getRepository('WallabagCoreBundle:Entry') |
120 | ->findOneByUrlAndUserId($url, $this->user->getId()); | 120 | ->existByUrlAndUserId($url, $this->user->getId()); |
121 | 121 | ||
122 | if (count($existingEntry) > 0) { | 122 | if (false !== $existingEntry) { |
123 | ++$this->skippedEntries; | 123 | ++$this->skippedEntries; |
124 | continue; | 124 | continue; |
125 | } | 125 | } |