File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff 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 )) {
Original file line number Diff line number Diff 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 ],
You can’t perform that action at this time.
0 commit comments