summaryrefslogtreecommitdiffhomepage
path: root/ios/MullvadVPN
diff options
context:
space:
mode:
authorBug Magnet <marco.nikic@mullvad.net>2023-10-20 08:55:03 +0200
committerBug Magnet <marco.nikic@mullvad.net>2023-10-20 08:55:03 +0200
commit61bc7d46fdafd964e7efb0073b5233222a71a404 (patch)
treeb1ea31a10fabdbaf982eed210a6ba8eeaef5fe54 /ios/MullvadVPN
parent52fd2c207b2812eb2b1c010039c145480926ba3d (diff)
parenteb32396b0adcb0b60c8181c807f2a18ba9de66e4 (diff)
downloadmullvadvpn-61bc7d46fdafd964e7efb0073b5233222a71a404.tar.xz
mullvadvpn-61bc7d46fdafd964e7efb0073b5233222a71a404.zip
Merge branch 'add-blocked-state-due-to-account-expiration-ios-338'
Diffstat (limited to 'ios/MullvadVPN')
-rw-r--r--ios/MullvadVPN/Notifications/Notification Providers/TunnelStatusNotificationProvider.swift2
1 files changed, 2 insertions, 0 deletions
diff --git a/ios/MullvadVPN/Notifications/Notification Providers/TunnelStatusNotificationProvider.swift b/ios/MullvadVPN/Notifications/Notification Providers/TunnelStatusNotificationProvider.swift
index d36c41303c..8e4fcf2897 100644
--- a/ios/MullvadVPN/Notifications/Notification Providers/TunnelStatusNotificationProvider.swift
+++ b/ios/MullvadVPN/Notifications/Notification Providers/TunnelStatusNotificationProvider.swift
@@ -231,6 +231,8 @@ final class TunnelStatusNotificationProvider: NotificationProvider, InAppNotific
errorString = "No servers match your settings, try changing server or other settings."
case .invalidAccount:
errorString = "You are logged in with an invalid account number. Please log out and try another one."
+ case .accountExpired:
+ errorString = "Account is out of time."
case .deviceRevoked, .deviceLoggedOut:
errorString = "Unable to authenticate account. Please log out and log back in."
default: