diff options
author | Vincent Petry <vincent@nextcloud.com> | 2021-01-25 12:02:14 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2021-01-25 12:12:50 +0100 |
commit | 65da8bd76e72dd94b882fa23e997617896f5eef2 (patch) | |
tree | 051e8fee17836242d67b80053021133c27941e3f /apps/dav | |
parent | b98860eeb3e9f1abfcca1e5ea335159193a47e80 (diff) | |
download | nextcloud-server-65da8bd76e72dd94b882fa23e997617896f5eef2.tar.gz nextcloud-server-65da8bd76e72dd94b882fa23e997617896f5eef2.zip |
Catch NotFoundException when querying quota
Fixes parent folder that becomes inaccessible when it contains a
non-existing / broken entry because the quota check made the PROPFIND
on parent fail altogether.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/Directory.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dav/lib/Connector/Sabre/Directory.php b/apps/dav/lib/Connector/Sabre/Directory.php index f2227f70151..990e57eea58 100644 --- a/apps/dav/lib/Connector/Sabre/Directory.php +++ b/apps/dav/lib/Connector/Sabre/Directory.php @@ -339,6 +339,8 @@ class Directory extends \OCA\DAV\Connector\Sabre\Node implements \Sabre\DAV\ICol $free ]; return $this->quotaInfo; + } catch (\OCP\Files\NotFoundException $e) { + return [0, 0]; } catch (\OCP\Files\StorageNotAvailableException $e) { return [0, 0]; } |