summaryrefslogtreecommitdiffhomepage
path: root/android/lib/ui
diff options
context:
space:
mode:
authorJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-04-09 10:41:49 +0200
committerJonatan Rhodin <jonatan.rhodin@mullvad.net>2025-04-09 10:41:49 +0200
commit75da013ccc20e5a612a87aa826c4e057da22567a (patch)
treec7ceded57a9d31680e40e91ef15123e3b3e984ed /android/lib/ui
parent9a6938a4a32ecc162cc5afcf15fa636de2f9b9fe (diff)
parent1272d1bbe4c73529d3c4ca358da5b58a19ebd84d (diff)
downloadmullvadvpn-75da013ccc20e5a612a87aa826c4e057da22567a.tar.xz
mullvadvpn-75da013ccc20e5a612a87aa826c4e057da22567a.zip
Merge branch 'implement-device-ip-version-error-droid-1918'
Diffstat (limited to 'android/lib/ui')
-rw-r--r--android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/NotificationData.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/NotificationData.kt b/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/NotificationData.kt
index c7fdad4793..b022ca8c07 100644
--- a/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/NotificationData.kt
+++ b/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/NotificationData.kt
@@ -237,8 +237,10 @@ private fun ParameterGenerationError.errorMessageId(): Int =
R.string.no_matching_relay
}
ParameterGenerationError.NoWireguardKey -> R.string.no_wireguard_key
- ParameterGenerationError.CustomTunnelHostResultionError ->
+ ParameterGenerationError.CustomTunnelHostResolutionError ->
R.string.custom_tunnel_host_resolution_error
+ ParameterGenerationError.Ipv4_Unavailable -> R.string.ip_version_v4_unavailable
+ ParameterGenerationError.Ipv6_Unavailable -> R.string.ip_version_v6_unavailable
}
private fun InetAddress.addressString(): String {