Skip to content

Commit 91116e7

Browse files
Merge pull request #52138 from nextcloud/revert-52123-backport/51431/stable31
Revert "[stable31] feat(bulk-upload): change the default to disabled as there are still some bugs present"
2 parents cb13e2f + 215fa11 commit 91116e7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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', false)) {
28+
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
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
@@ -2573,9 +2573,9 @@
25732573
/**
25742574
* Enable the bulk upload feature.
25752575
*
2576-
* Defaults to ``false``
2576+
* Defaults to ``true``
25772577
*/
2578-
'bulkupload.enabled' => false,
2578+
'bulkupload.enabled' => true,
25792579

25802580
/**
25812581
* Enables fetching open graph metadata from remote urls

0 commit comments

Comments
 (0)