mirror of
https://github.com/immich-app/immich.git
synced 2026-06-12 11:01:45 -07:00
a17276fd1e
* chore: remove incompatibility message warning * lint
9 lines
325 B
Dart
9 lines
325 B
Dart
String? getVersionCompatibilityMessage(int _, int appMinor, int _, int serverMinor) {
|
|
// Add latest compat info up top
|
|
if (serverMinor < 106 && appMinor >= 106) {
|
|
return 'Your app minor version is not compatible with the server! Please update your server to version v1.106.0 or newer to login';
|
|
}
|
|
|
|
return null;
|
|
}
|