summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@mullvad.net>2022-12-05 15:02:11 +0100
committerAndrej Mihajlov <and@mullvad.net>2022-12-08 14:28:52 +0100
commit6ca32645bb830f44cfaf4422ab9bc0715c20faa4 (patch)
treea481354d3c91fe7b8d77dd58f3c720d94ae552f1
parent35d7755d7d80195212b4dff7739ef531c4d9a1ca (diff)
downloadmullvadvpn-6ca32645bb830f44cfaf4422ab9bc0715c20faa4.tar.xz
mullvadvpn-6ca32645bb830f44cfaf4422ab9bc0715c20faa4.zip
Explicitly state that migration errors lead to device being logged out
-rw-r--r--ios/MullvadVPN/SceneDelegate.swift10
1 files changed, 7 insertions, 3 deletions
diff --git a/ios/MullvadVPN/SceneDelegate.swift b/ios/MullvadVPN/SceneDelegate.swift
index b022aa2772..26b29c3805 100644
--- a/ios/MullvadVPN/SceneDelegate.swift
+++ b/ios/MullvadVPN/SceneDelegate.swift
@@ -988,7 +988,7 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate, UISplitViewControllerDe
tableName: "SettingsMigrationUI",
value: """
The version of settings stored on device is from a newer app than is currently \
- running. Settings will be reset to defaults.
+ running. Settings will be reset to defaults and device logged out.
""",
comment: ""
)
@@ -998,14 +998,18 @@ class SceneDelegate: UIResponder, UIWindowSceneDelegate, UISplitViewControllerDe
return NSLocalizedString(
"NETWORK_ERROR",
tableName: "SettingsMigrationUI",
- value: "Network error occurred. Settings will be reset to defaults.",
+ value: """
+ Network error occurred. Settings will be reset to defaults and device logged out.
+ """,
comment: ""
)
} else {
return NSLocalizedString(
"INTERNAL_ERROR",
tableName: "SettingsMigrationUI",
- value: "Internal error occurred. Settings will be reset to defaults.",
+ value: """
+ Internal error occurred. Settings will be reset to defaults and device logged out.
+ """,
comment: ""
)
}