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:
authorRobin Appelman <robin@icewind.nl>2022-03-25 17:24:16 +0300
committerRobin Appelman <robin@icewind.nl>2022-04-04 17:48:27 +0300
commit5e2dd29aafeb40ba310e12766c8a5b4da564c869 (patch)
treed59f3b992f369397601088549eac46a9f493ec4b /apps/files_sharing/lib
parent802e59243b79a79b686c55c172d0b3f254b97270 (diff)
only request free space once for external shares
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing/lib')
-rw-r--r--apps/files_sharing/lib/External/Storage.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/External/Storage.php b/apps/files_sharing/lib/External/Storage.php
index 6a784f91fb1..296e7ddf85b 100644
--- a/apps/files_sharing/lib/External/Storage.php
+++ b/apps/files_sharing/lib/External/Storage.php
@@ -429,4 +429,8 @@ class Storage extends DAV implements ISharedStorage, IDisableEncryptionStorage,
return $permissions;
}
+
+ public function free_space($path) {
+ return parent::free_space("");
+ }
}