summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMojgan <Mojgan.jelodar@codic.se>2023-06-19 16:31:42 +0200
committerAndrej Mihajlov <and@mullvad.net>2023-06-26 16:33:47 +0200
commit69234591fa28dcfb5b4e589d4ba385883e60fc0c (patch)
tree21f4892afc50004735dd82da00cb3e1613a34c7e
parent13e1275a144491e948df9583ff6d1325456c5d85 (diff)
downloadmullvadvpn-69234591fa28dcfb5b4e589d4ba385883e60fc0c.tar.xz
mullvadvpn-69234591fa28dcfb5b4e589d4ba385883e60fc0c.zip
Change the priorities of notifications
-rw-r--r--ios/MullvadVPN/AppDelegate.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/ios/MullvadVPN/AppDelegate.swift b/ios/MullvadVPN/AppDelegate.swift
index fd3d401ef6..f83dce7ee0 100644
--- a/ios/MullvadVPN/AppDelegate.swift
+++ b/ios/MullvadVPN/AppDelegate.swift
@@ -335,10 +335,10 @@ class AppDelegate: UIResponder, UIApplicationDelegate, UNUserNotificationCenterD
private func setupNotifications() {
NotificationManager.shared.notificationProviders = [
- RegisteredDeviceInAppNotificationProvider(tunnelManager: tunnelManager),
TunnelStatusNotificationProvider(tunnelManager: tunnelManager),
AccountExpirySystemNotificationProvider(tunnelManager: tunnelManager),
AccountExpiryInAppNotificationProvider(tunnelManager: tunnelManager),
+ RegisteredDeviceInAppNotificationProvider(tunnelManager: tunnelManager),
]
UNUserNotificationCenter.current().delegate = self
}