mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
chore(mobile): change version mismatch text (#4831)
* change version mismatch text * change text
This commit is contained in:
parent
e1e45f3f32
commit
d4ef6f52bb
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ class ServerInfoNotifier extends StateNotifier<ServerInfo> {
|
||||||
state = state.copyWith(
|
state = state.copyWith(
|
||||||
isVersionMismatch: true,
|
isVersionMismatch: true,
|
||||||
versionMismatchErrorMessage:
|
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;
|
return;
|
||||||
|
@ -76,7 +76,7 @@ class ServerInfoNotifier extends StateNotifier<ServerInfo> {
|
||||||
state = state.copyWith(
|
state = state.copyWith(
|
||||||
isVersionMismatch: true,
|
isVersionMismatch: true,
|
||||||
versionMismatchErrorMessage:
|
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;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue