From 1aac745f34bfa57e1e3e13b9032ce734b9662860 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Thu, 3 Sep 2020 11:01:04 +0200 Subject: [PATCH] Do not set retry flag on ForbiddenException MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- lib/Operation.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Operation.php b/lib/Operation.php index 71f762db..1360f880 100644 --- a/lib/Operation.php +++ b/lib/Operation.php @@ -82,7 +82,7 @@ public function checkFileAccess(IStorage $storage, string $path, bool $isDir = f if (!empty($match)) { // All Checks of one operation matched: prevent access - throw new ForbiddenException('Access denied', true); + throw new ForbiddenException('Access denied', false); } }