diff options
| author | David Göransson <david.goransson@mullvad.net> | 2025-07-16 09:17:45 +0200 |
|---|---|---|
| committer | David Lönnhager <david.l@mullvad.net> | 2025-07-23 09:41:54 +0200 |
| commit | bb4b111acc09a92fdf12e0fc6d504180f91421c8 (patch) | |
| tree | 631225900359f14962359923f4c8f7c9bbcc9a59 /android/lib/ui/component | |
| parent | 50936e756abb825757bc539dacfadb6640792fae (diff) | |
| download | mullvadvpn-bb4b111acc09a92fdf12e0fc6d504180f91421c8.tar.xz mullvadvpn-bb4b111acc09a92fdf12e0fc6d504180f91421c8.zip | |
Support new features message on Android
Diffstat (limited to 'android/lib/ui/component')
| -rw-r--r-- | android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/relaylist/RelayItemPreviewData.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/relaylist/RelayItemPreviewData.kt b/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/relaylist/RelayItemPreviewData.kt index 35397a6a27..712f093acf 100644 --- a/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/relaylist/RelayItemPreviewData.kt +++ b/android/lib/ui/component/src/main/kotlin/net/mullvad/mullvadvpn/lib/ui/component/relaylist/RelayItemPreviewData.kt @@ -1,5 +1,6 @@ package net.mullvad.mullvadvpn.lib.ui.component.relaylist +import net.mullvad.mullvadvpn.lib.model.Features import net.mullvad.mullvadvpn.lib.model.GeoLocationId import net.mullvad.mullvadvpn.lib.model.Ownership import net.mullvad.mullvadvpn.lib.model.ProviderId @@ -50,7 +51,7 @@ private fun generateRelayItemRelay( active = active, provider = ProviderId("Provider"), ownership = Ownership.MullvadOwned, - daita = daita, + features = Features(daita = daita, quic = null), ) private fun String.generateCountryCode() = |
