Merge pull request #51431 from nextcloud/enh/noid/disable-bulk-upload

feat(bulk-upload): change the default to disabled as there are still some bugs present
pull/52128/head
Tobias Kaminsky 2025-04-11 11:22:02 +07:00 committed by GitHub
commit 5e9ebe4acb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

@ -25,7 +25,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()) {

@ -2563,9 +2563,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