Skip to content

Commit 7fca1c8

Browse files
authored
Merge pull request #55810 from nextcloud/skjnldsv-patch-1
2 parents 1c57699 + 365a040 commit 7fca1c8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

apps/dav/lib/Capabilities.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public function getCapabilities() {
2424
$capabilities = [
2525
'dav' => [
2626
'chunking' => '1.0',
27-
'public_shares_chunking' => true,
27+
'public_shares_chunking' => false,
2828
]
2929
];
3030
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {

apps/dav/tests/unit/CapabilitiesTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testGetCapabilities(): void {
3030
$expected = [
3131
'dav' => [
3232
'chunking' => '1.0',
33-
'public_shares_chunking' => true,
33+
'public_shares_chunking' => false,
3434
],
3535
];
3636
$this->assertSame($expected, $capabilities->getCapabilities());
@@ -50,7 +50,7 @@ public function testGetCapabilitiesWithBulkUpload(): void {
5050
$expected = [
5151
'dav' => [
5252
'chunking' => '1.0',
53-
'public_shares_chunking' => true,
53+
'public_shares_chunking' => false,
5454
'bulkupload' => '1.0',
5555
],
5656
];
@@ -71,7 +71,7 @@ public function testGetCapabilitiesWithAbsence(): void {
7171
$expected = [
7272
'dav' => [
7373
'chunking' => '1.0',
74-
'public_shares_chunking' => true,
74+
'public_shares_chunking' => false,
7575
'absence-supported' => true,
7676
'absence-replacement' => true,
7777
],

0 commit comments

Comments
 (0)