aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Repository/EntryRepository.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Repository/EntryRepository.php')
-rw-r--r--src/Wallabag/CoreBundle/Repository/EntryRepository.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
index b5e35eff..9e471d3c 100644
--- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php
+++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php
@@ -314,8 +314,11 @@ class EntryRepository extends EntityRepository
314 */ 314 */
315 public function findByUrlAndUserId($url, $userId) 315 public function findByUrlAndUserId($url, $userId)
316 { 316 {
317 $url = urldecode($url);
318
317 $res = $this->createQueryBuilder('e') 319 $res = $this->createQueryBuilder('e')
318 ->where('e.url = :url')->setParameter('url', urldecode($url)) 320 ->where('e.url = :url')->setParameter('url', $url)
321 ->orWhere('e.givenUrl = :url')->setParameter('url', $url)
319 ->andWhere('e.user = :user_id')->setParameter('user_id', $userId) 322 ->andWhere('e.user = :user_id')->setParameter('user_id', $userId)
320 ->getQuery() 323 ->getQuery()
321 ->getResult(); 324 ->getResult();