aboutsummaryrefslogtreecommitdiffstats
path: root/apps/dav/lib
diff options
context:
space:
mode:
authorTobias Kaminsky <tobias@kaminsky.me>2025-04-11 11:22:02 +0200
committerGitHub <noreply@github.com>2025-04-11 11:22:02 +0200
commit5e9ebe4acba0890cf78180417ffe4dc5dc3d4c1f (patch)
tree74ce9d431a5b9626568f35874657dcd5b62305ed /apps/dav/lib
parentd16bc3b550e370371760e6f7535764f4bcc0f2c9 (diff)
parent5e6478fd645ec9d255cdf0487475064aeaf39c5b (diff)
downloadnextcloud-server-5e9ebe4acba0890cf78180417ffe4dc5dc3d4c1f.tar.gz
nextcloud-server-5e9ebe4acba0890cf78180417ffe4dc5dc3d4c1f.zip
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
Diffstat (limited to 'apps/dav/lib')
-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 ab4e53fce37..cc4eb09a389 100644
--- a/apps/dav/lib/Capabilities.php
+++ b/apps/dav/lib/Capabilities.php
@@ -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()) {