Skip to content

Commit 5e9ebe4

Browse files
Merge pull request nextcloud#51431 from nextcloud/enh/noid/disable-bulk-upload
feat(bulk-upload): change the default to disabled as there are still some bugs present
2 parents d16bc3b + 5e6478f commit 5e9ebe4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

apps/dav/lib/Capabilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function getCapabilities() {
2525
'chunking' => '1.0',
2626
]
2727
];
28-
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
28+
if ($this->config->getSystemValueBool('bulkupload.enabled', false)) {
2929
$capabilities['dav']['bulkupload'] = '1.0';
3030
}
3131
if ($this->coordinator->isEnabled()) {

config/config.sample.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2563,9 +2563,9 @@
25632563
/**
25642564
* Enable the bulk upload feature.
25652565
*
2566-
* Defaults to ``true``
2566+
* Defaults to ``false``
25672567
*/
2568-
'bulkupload.enabled' => true,
2568+
'bulkupload.enabled' => false,
25692569

25702570
/**
25712571
* Enables fetching open graph metadata from remote urls

0 commit comments

Comments
 (0)