diff options
author | Vincent Petry <vincent@nextcloud.com> | 2022-02-14 16:14:57 +0100 |
---|---|---|
committer | Vincent Petry <vincent@nextcloud.com> | 2022-03-28 17:17:22 +0200 |
commit | d31bc9fa345900330eb036597ed8303a091cb123 (patch) | |
tree | 9e6c5e8b92c1e0a078e90674bf4ab0146ed10d90 /apps | |
parent | 39494fbf794d982f6f6551c984e6ca4c4e947d01 (diff) | |
download | nextcloud-server-d31bc9fa345900330eb036597ed8303a091cb123.tar.gz nextcloud-server-d31bc9fa345900330eb036597ed8303a091cb123.zip |
Disable bulk upload by not advertising it
It has been reported broken on many instances.
Disable it for now until it can be fixed.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/dav/lib/Capabilities.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php index ce60bccfd0b..2f0378dd56a 100644 --- a/apps/dav/lib/Capabilities.php +++ b/apps/dav/lib/Capabilities.php @@ -29,7 +29,8 @@ class Capabilities implements ICapability { return [ 'dav' => [ 'chunking' => '1.0', - 'bulkupload' => '1.0', +// disabled because of https://github.com/nextcloud/desktop/issues/4243 +// 'bulkupload' => '1.0', ] ]; } |