diff options
author | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2025-08-11 00:34:04 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-11 00:34:04 +0000 |
commit | f5a5b005b6267a5c082258e7b9904685f84fad68 (patch) | |
tree | 22307d42ef341b4eb5c992867e4eb5870a683859 | |
parent | de4a35b20234d7c300e711acf2edaf51e7bb5581 (diff) | |
download | nextcloud-server-automated/noid/-update-min-supported-desktop-version.tar.gz nextcloud-server-automated/noid/-update-min-supported-desktop-version.zip |
chore: Update minimum supported desktop versionautomated/noid/-update-min-supported-desktop-version
Signed-off-by: GitHub <noreply@github.com>
-rw-r--r-- | apps/dav/lib/Connector/Sabre/BlockLegacyClientPlugin.php | 2 | ||||
-rw-r--r-- | 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 44430b0004e..21358406a4a 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.7.0'); + $minimumSupportedDesktopVersion = $this->config->getSystemValueString('minimum.supported.desktop.version', '3.1.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 b5fe5efdbc9..d8780324cb0 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2254,9 +2254,9 @@ $CONFIG = [ * Changing this may cause older, unsupported clients to malfunction, potentially * leading to data loss or unexpected behavior. * - * Defaults to ``2.7.0`` + * Defaults to ``3.1.0`` */ -'minimum.supported.desktop.version' => '2.7.0', +'minimum.supported.desktop.version' => '3.1.0', /** * Specify the maximum Nextcloud desktop client version allowed to sync with this |