Browse Source

fix(nextcloud): Only advertise server 27.1 compatibility

Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/1187/head
jld3103 1 year ago
parent
commit
cb32525faa
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
  1. 2
      packages/nextcloud/lib/src/helpers/core.dart

2
packages/nextcloud/lib/src/helpers/core.dart

@ -5,7 +5,7 @@ import 'package:nextcloud/src/helpers/common.dart';
import 'package:version/version.dart';
/// Minimum version of core/Server supported
final minVersion = Version(27, 0, 0);
final minVersion = Version(27, 1, 0);
extension CoreVersionCheck on core.Client {
/// Check if the core/Server version is supported by this client

Loading…
Cancel
Save