aboutsummaryrefslogtreecommitdiffhomepage
path: root/application
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-10-28 12:54:52 +0100
committerArthurHoaro <arthur@hoa.ro>2020-10-28 13:16:18 +0100
commit156061d445fd23d033a52f84954484a3349c988a (patch)
tree1b8146152f3085c86d83e8532d4c278309a75078 /application
parent34c8f558e595d4f90e46e3753c8455b0b515771a (diff)
downloadShaarli-156061d445fd23d033a52f84954484a3349c988a.tar.gz
Shaarli-156061d445fd23d033a52f84954484a3349c988a.tar.zst
Shaarli-156061d445fd23d033a52f84954484a3349c988a.zip
Raise 404 error instead of 500 if permalink access is denied
Diffstat (limited to 'application')
-rw-r--r--application/bookmark/BookmarkFileService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/bookmark/BookmarkFileService.php b/application/bookmark/BookmarkFileService.php
index 0df2f47f..3ea98a45 100644
--- a/application/bookmark/BookmarkFileService.php
+++ b/application/bookmark/BookmarkFileService.php
@@ -106,7 +106,7 @@ class BookmarkFileService implements BookmarkServiceInterface
106 && $first->isPrivate() 106 && $first->isPrivate()
107 && (empty($privateKey) || $privateKey !== $first->getAdditionalContentEntry('private_key')) 107 && (empty($privateKey) || $privateKey !== $first->getAdditionalContentEntry('private_key'))
108 ) { 108 ) {
109 throw new Exception('Not authorized'); 109 throw new BookmarkNotFoundException();
110 } 110 }
111 111
112 return $first; 112 return $first;