From 913f3f0cd50fed3f77348c4e83af2e8e7b57e665 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Thu, 23 Apr 2020 09:53:00 +0200 Subject: [PATCH] Don't advertise unsupported chunking v2 Removed "chunking" attribute in the DAV capabilities. Please note that chunking v2 is advertised as "chunking 1.0" while chunking v1 is the attribute "bigfilechunking" which is already false. --- pkg/command/frontend.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/command/frontend.go b/pkg/command/frontend.go index 5df60e90b0..fa198d7bcb 100644 --- a/pkg/command/frontend.go +++ b/pkg/command/frontend.go @@ -144,9 +144,7 @@ func Frontend(cfg *config.Config) *cli.Command { "undelete": true, "versioning": true, }, - "dav": map[string]interface{}{ - "chunking": "1.0", - }, + "dav": map[string]interface{}{}, "files_sharing": map[string]interface{}{ "api_enabled": true, "resharing": true,