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>2022-02-14 18:14:57 +0300
committerVincent Petry <vincent@nextcloud.com>2022-02-14 18:14:57 +0300
commit58cec19291ac7f1b10b22286c27e3ab052e9514d (patch)
tree36c2d537b7c201159122626ac2d02331bd26f723
parent2260f1e914bd44931a1e6e2f86ed32fd4a7bb0dd (diff)
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>
-rw-r--r--apps/dav/lib/Capabilities.php3
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',
]
];
}