diff options
| author | Andrej Mihajlov <and@mullvad.net> | 2022-12-05 15:02:11 +0100 |
|---|---|---|
| committer | Andrej Mihajlov <and@mullvad.net> | 2022-12-08 14:28:52 +0100 |
| commit | 6ca32645bb830f44cfaf4422ab9bc0715c20faa4 (patch) | |
| tree | a481354d3c91fe7b8d77dd58f3c720d94ae552f1 /ios | |
| parent | 35d7755d7d80195212b4dff7739ef531c4d9a1ca (diff) | |
| download | mullvadvpn-6ca32645bb830f44cfaf4422ab9bc0715c20faa4.tar.xz mullvadvpn-6ca32645bb830f44cfaf4422ab9bc0715c20faa4.zip | |
Explicitly state that migration errors lead to device being logged out
Diffstat (limited to 'ios')
| -rw-r--r-- | ios/MullvadVPN/SceneDelegate.swift | 10 |
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: "" ) } |
