diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/external/storage.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/external/storage.php b/apps/files_sharing/lib/external/storage.php index b357bf3b7f6..6e59555cc48 100644 --- a/apps/files_sharing/lib/external/storage.php +++ b/apps/files_sharing/lib/external/storage.php @@ -250,6 +250,9 @@ class Storage extends DAV implements ISharedStorage { if ($e->getCode() === 401 || $e->getCode() === 403) { throw new ForbiddenException(); } + if ($e->getCode() === 404) { + throw new NotFoundException(); + } // throw this to be on the safe side: the share will still be visible // in the UI in case the failure is intermittent, and the user will // be able to decide whether to remove it if it's really gone |