1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

chore(mobile): change version mismatch text (#4831)

* change version mismatch text

* change text
This commit is contained in:
Wingy 2023-11-03 18:20:42 -07:00 committed by GitHub
parent e1e45f3f32
commit d4ef6f52bb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -66,7 +66,7 @@ class ServerInfoNotifier extends StateNotifier<ServerInfo> {
state = state.copyWith(
isVersionMismatch: true,
versionMismatchErrorMessage:
"Server is out of date in major version. Some functionalities might not work correctly. Download and rebuild server",
"Server is out of date. Please update to the latest major version.",
);
return;
@ -76,7 +76,7 @@ class ServerInfoNotifier extends StateNotifier<ServerInfo> {
state = state.copyWith(
isVersionMismatch: true,
versionMismatchErrorMessage:
"Server is out of date in minor version. Some functionalities might not work correctly. Consider download and rebuild server",
"Server is out of date. Consider updating to the latest minor version.",
);
return;