From 63b74dc506fd7bed8dd5ab1662d7d0ef5e1a5afe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Molakvo=C3=A6?= Date: Wed, 27 Nov 2024 22:54:40 +0100 Subject: [PATCH] chore(config): set min supported desktop to `2.7.0` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: John Molakvoæ Signed-off-by: skjnldsv --- apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php | 2 +- config/config.sample.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php b/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php index 93ce18fa8f903..44430b0004ed1 100644 --- a/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php +++ b/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php @@ -49,7 +49,7 @@ public function beforeHandler(RequestInterface $request) { return; } - $minimumSupportedDesktopVersion = $this->config->getSystemValueString('minimum.supported.desktop.version', '2.3.0'); + $minimumSupportedDesktopVersion = $this->config->getSystemValueString('minimum.supported.desktop.version', '2.7.0'); $maximumSupportedDesktopVersion = $this->config->getSystemValueString('maximum.supported.desktop.version', '99.99.99'); // Check if the client is a desktop client diff --git a/config/config.sample.php b/config/config.sample.php index ab094c09fb226..f9dd921033672 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2132,9 +2132,9 @@ * client may not function as expected, and could lead to permanent data loss for * clients or other unexpected results. * - * Defaults to ``2.3.0`` + * Defaults to ``2.7.0`` */ -'minimum.supported.desktop.version' => '2.3.0', +'minimum.supported.desktop.version' => '2.7.0', /** * The maximum Nextcloud desktop client version that will be allowed to sync with