summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorBug Magnet <marco.nikic@mullvad.net>2025-01-31 09:39:00 +0100
committerBug Magnet <marco.nikic@mullvad.net>2025-01-31 09:39:00 +0100
commitfa0f96d95632c3e3f9c0580133ba9602d95626cf (patch)
treec43d1c6844debaa9a53b0ad875686ed9febfb265
parent6ced6407cb226fa7998e72f66a0de00db6caf0bd (diff)
parent0fdc5eca0bc0f2803b8833b7bbb1f3791be6915a (diff)
downloadmullvadvpn-fa0f96d95632c3e3f9c0580133ba9602d95626cf.tar.xz
mullvadvpn-fa0f96d95632c3e3f9c0580133ba9602d95626cf.zip
Merge branch 'IOS-1035-new-version-banner-too-many-devices'
-rw-r--r--ios/MullvadVPN/View controllers/DeviceList/DeviceManagementViewController.swift4
-rw-r--r--ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift4
2 files changed, 8 insertions, 0 deletions
diff --git a/ios/MullvadVPN/View controllers/DeviceList/DeviceManagementViewController.swift b/ios/MullvadVPN/View controllers/DeviceList/DeviceManagementViewController.swift
index 546d6bd044..68921af096 100644
--- a/ios/MullvadVPN/View controllers/DeviceList/DeviceManagementViewController.swift
+++ b/ios/MullvadVPN/View controllers/DeviceList/DeviceManagementViewController.swift
@@ -28,6 +28,10 @@ class DeviceManagementViewController: UIViewController, RootContainment {
false
}
+ var prefersNotificationBarHidden: Bool {
+ true
+ }
+
override var preferredStatusBarStyle: UIStatusBarStyle {
.lightContent
}
diff --git a/ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift b/ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift
index 8c70610f9c..413f0821fe 100644
--- a/ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift
+++ b/ios/MullvadVPN/View controllers/OutOfTime/OutOfTimeViewController.swift
@@ -58,6 +58,10 @@ class OutOfTimeViewController: UIViewController, RootContainment {
false
}
+ var prefersNotificationBarHidden: Bool {
+ true
+ }
+
init(interactor: OutOfTimeInteractor, errorPresenter: PaymentAlertPresenter) {
self.interactor = interactor
self.errorPresenter = errorPresenter