diff options
author | Simon L. <szaimen@e.mail.de> | 2025-03-12 12:16:52 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2025-04-11 09:22:24 +0000 |
commit | 90aad5759cdf7fce7b5cb66e42dcad92bd7bbc8e (patch) | |
tree | 62a9cc4c5ca8fcaa9412781e144a2dbe59e4750a | |
parent | d64e700a687db81bd0556343567245c5cdf4e455 (diff) | |
download | nextcloud-server-backport/51431/stable31.tar.gz nextcloud-server-backport/51431/stable31.zip |
feat(bulk-upload): change the default to disabled as there are still some bugs presentbackport/51431/stable31
Signed-off-by: Simon L. <szaimen@e.mail.de>
-rw-r--r-- | apps/dav/lib/Capabilities.php | 2 | ||||
-rw-r--r-- | config/config.sample.php | 4 |
2 files changed, 3 insertions, 3 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()) { diff --git a/config/config.sample.php b/config/config.sample.php index bfda1609d75..7ff9f3f9cfd 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -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 |