diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-11-27 22:54:40 +0100 |
---|---|---|
committer | skjnldsv <skjnldsv@protonmail.com> | 2024-11-27 22:55:40 +0100 |
commit | 63b74dc506fd7bed8dd5ab1662d7d0ef5e1a5afe (patch) | |
tree | f59359828f0a0745b2e37de71e49f998c5d6b564 /apps/dav | |
parent | 6230849e4692a49bc40f7781e96cc81c04f409a3 (diff) | |
download | nextcloud-server-63b74dc506fd7bed8dd5ab1662d7d0ef5e1a5afe.tar.gz nextcloud-server-63b74dc506fd7bed8dd5ab1662d7d0ef5e1a5afe.zip |
chore(config): set min supported desktop to `2.7.0`
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php b/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php index 93ce18fa8f9..44430b0004e 100644 --- a/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php +++ b/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php @@ -49,7 +49,7 @@ class BlockLegacyClientPlugin extends ServerPlugin { 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 |