Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Petry <vincent@nextcloud.com>2021-01-25 14:02:14 +0300
committerVincent Petry <vincent@nextcloud.com>2021-01-25 14:12:50 +0300
commit65da8bd76e72dd94b882fa23e997617896f5eef2 (patch)
tree051e8fee17836242d67b80053021133c27941e3f
parentb98860eeb3e9f1abfcca1e5ea335159193a47e80 (diff)
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>
-rw-r--r--apps/dav/lib/Connector/Sabre/Directory.php2
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];
}