feat(bulk-upload): change the default to disabled as there are still some bugs present

Signed-off-by: Simon L. <szaimen@e.mail.de>
pull/52122/head
Simon L. 2025-03-12 12:16:52 +07:00 committed by backportbot[bot]
parent a253538d6a
commit 2b4a4556e4
2 changed files with 3 additions and 3 deletions

@ -27,7 +27,7 @@ class Capabilities implements ICapability {
'chunking' => '1.0',
]
];
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
if ($this->config->getSystemValueBool('bulkupload.enabled', false)) {
$capabilities['dav']['bulkupload'] = '1.0';
}
if ($this->coordinator->isEnabled()) {

@ -2519,9 +2519,9 @@ $CONFIG = [
/**
* Enable the bulk upload feature.
*
* Defaults to ``true``
* Defaults to ``false``
*/
'bulkupload.enabled' => true,
'bulkupload.enabled' => false,
/**
* Enables fetching open graph metadata from remote urls