diff options
author | Matthieu Gallien <matthieu.gallien@nextcloud.com> | 2022-11-25 11:40:30 +0100 |
---|---|---|
committer | Matthieu Gallien <matthieu.gallien@nextcloud.com> | 2022-11-25 11:40:30 +0100 |
commit | c63ff42410107570eef49cd0deea75821c5aeae1 (patch) | |
tree | 4d14e7f0dd0e26c22a3d3823d5f950966ad12620 /apps | |
parent | d92c5f78cec5465833fa78b6f8494fb42041999f (diff) | |
download | nextcloud-server-c63ff42410107570eef49cd0deea75821c5aeae1.tar.gz nextcloud-server-c63ff42410107570eef49cd0deea75821c5aeae1.zip |
minimum desktop client that is supported is 2.3.0
2.3.0 was release on Mar 3, 2017
added support for new chunking algorithm allowing to now deprecate the
older one
Signed-off-by: Matthieu Gallien <matthieu.gallien@nextcloud.com>
Diffstat (limited to 'apps')
-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 2d2be631416..257068b9576 100644 --- a/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php +++ b/apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php @@ -64,7 +64,7 @@ class BlockLegacyClientPlugin extends ServerPlugin { return; } - $minimumSupportedDesktopVersion = $this->config->getSystemValue('minimum.supported.desktop.version', '2.0.0'); + $minimumSupportedDesktopVersion = $this->config->getSystemValue('minimum.supported.desktop.version', '2.3.0'); // Match on the mirall version which is in scheme "Mozilla/5.0 (%1) mirall/%2" or // "mirall/%1" for older releases |