Merge pull request #55810 from nextcloud/skjnldsv-patch-1

fix/s3/custom-ca-bundle
John Molakvoæ 2025-10-21 10:13:18 +07:00 committed by GitHub
commit 7fca1c87ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

@ -24,7 +24,7 @@ class Capabilities implements ICapability {
$capabilities = [ $capabilities = [
'dav' => [ 'dav' => [
'chunking' => '1.0', 'chunking' => '1.0',
'public_shares_chunking' => true, 'public_shares_chunking' => false,
] ]
]; ];
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {

@ -30,7 +30,7 @@ class CapabilitiesTest extends TestCase {
$expected = [ $expected = [
'dav' => [ 'dav' => [
'chunking' => '1.0', 'chunking' => '1.0',
'public_shares_chunking' => true, 'public_shares_chunking' => false,
], ],
]; ];
$this->assertSame($expected, $capabilities->getCapabilities()); $this->assertSame($expected, $capabilities->getCapabilities());
@ -50,7 +50,7 @@ class CapabilitiesTest extends TestCase {
$expected = [ $expected = [
'dav' => [ 'dav' => [
'chunking' => '1.0', 'chunking' => '1.0',
'public_shares_chunking' => true, 'public_shares_chunking' => false,
'bulkupload' => '1.0', 'bulkupload' => '1.0',
], ],
]; ];
@ -71,7 +71,7 @@ class CapabilitiesTest extends TestCase {
$expected = [ $expected = [
'dav' => [ 'dav' => [
'chunking' => '1.0', 'chunking' => '1.0',
'public_shares_chunking' => true, 'public_shares_chunking' => false,
'absence-supported' => true, 'absence-supported' => true,
'absence-replacement' => true, 'absence-replacement' => true,
], ],