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>
This commit is contained in:
Vincent Petry 2022-02-14 16:14:57 +01:00
parent 39494fbf79
commit d31bc9fa34
No known key found for this signature in database
GPG key ID: E055D6A4D513575C

View 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',
]
];
}