Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-08-29 18:47:24 +0300
committerCôme Chilliet <come.chilliet@nextcloud.com>2022-08-29 18:49:55 +0300
commit7f80dccbaccd90c0ec015a24e5e564d0a5f5d57c (patch)
tree7575c3157bf4e2d8b0bda53329c2fe09c93de542 /apps
parent9874557e439f1976949e4b190967190864c8d13e (diff)
Flip bulkupload.enabled default value to truefix/improve-bulk-upload
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/Capabilities.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php
index fd500ee8012..b8096d3395a 100644
--- a/apps/dav/lib/Capabilities.php
+++ b/apps/dav/lib/Capabilities.php
@@ -39,7 +39,7 @@ class Capabilities implements ICapability {
'chunking' => '1.0',
]
];
- if ($this->config->getSystemValueBool('bulkupload.enabled', false)) {
+ if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
$capabilities['dav']['bulkupload'] = '1.0';
}
return $capabilities;