diff options
author | blizzz <blizzz@arthur-schiwon.de> | 2022-02-15 13:43:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-15 13:43:45 +0100 |
commit | d98fe9d23c9d970627a87fe29f55a4876877de95 (patch) | |
tree | da426222aa04b6963beab360885875fbadf4d7b2 | |
parent | 2260f1e914bd44931a1e6e2f86ed32fd4a7bb0dd (diff) | |
parent | 585d069a715bfde0e90e43e52bbd5b58d36c0173 (diff) | |
download | nextcloud-server-d98fe9d23c9d970627a87fe29f55a4876877de95.tar.gz nextcloud-server-d98fe9d23c9d970627a87fe29f55a4876877de95.zip |
Merge pull request #31171 from nextcloud/stable23-disable-bulkupload
[stable23] Disable bulk upload by not advertising it
-rw-r--r-- | apps/dav/lib/Capabilities.php | 3 | ||||
-rw-r--r-- | apps/dav/tests/unit/CapabilitiesTest.php | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php index ce60bccfd0b..41d1b983587 100644 --- a/apps/dav/lib/Capabilities.php +++ b/apps/dav/lib/Capabilities.php @@ -29,7 +29,8 @@ class Capabilities implements ICapability { return [ 'dav' => [ 'chunking' => '1.0', - 'bulkupload' => '1.0', + // disabled because of https://github.com/nextcloud/desktop/issues/4243 + // 'bulkupload' => '1.0', ] ]; } diff --git a/apps/dav/tests/unit/CapabilitiesTest.php b/apps/dav/tests/unit/CapabilitiesTest.php index 399467f6ed8..7abfd08854b 100644 --- a/apps/dav/tests/unit/CapabilitiesTest.php +++ b/apps/dav/tests/unit/CapabilitiesTest.php @@ -35,7 +35,8 @@ class CapabilitiesTest extends TestCase { $expected = [ 'dav' => [ 'chunking' => '1.0', - 'bulkupload' => '1.0', + // disabled because of https://github.com/nextcloud/desktop/issues/4243 + // 'bulkupload' => '1.0', ], ]; $this->assertSame($expected, $capabilities->getCapabilities()); |