diff options
author | Robin Appelman <robin@icewind.nl> | 2022-03-25 15:24:16 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2022-04-04 16:48:27 +0200 |
commit | 5e2dd29aafeb40ba310e12766c8a5b4da564c869 (patch) | |
tree | d59f3b992f369397601088549eac46a9f493ec4b /apps | |
parent | 802e59243b79a79b686c55c172d0b3f254b97270 (diff) | |
download | nextcloud-server-5e2dd29aafeb40ba310e12766c8a5b4da564c869.tar.gz nextcloud-server-5e2dd29aafeb40ba310e12766c8a5b4da564c869.zip |
only request free space once for external shares
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/External/Storage.php | 4 |
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(""); + } } |