]> source.dussan.org Git - nextcloud-server.git/commitdiff
Disable bulk upload by not advertising it
authorVincent Petry <vincent@nextcloud.com>
Mon, 14 Feb 2022 15:14:57 +0000 (16:14 +0100)
committerVincent Petry <vincent@nextcloud.com>
Mon, 28 Mar 2022 15:17:22 +0000 (17:17 +0200)
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>
apps/dav/lib/Capabilities.php

index ce60bccfd0b54bba974b9a519e7f65a10684cbff..2f0378dd56a409f360865dab5015670dece22e0e 100644 (file)
@@ -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',
                        ]
                ];
        }