diff options
| author | Jonatan Rhodin <jonatan.rhodin@mullvad.net> | 2023-06-28 15:08:57 +0200 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2023-07-06 11:43:36 +0200 |
| commit | f4fa4ab30e0271dfbe9b335481baec2aee1dc6a2 (patch) | |
| tree | 85a113a013f41ac4c1937bff872a4352cfe818fc /android/app | |
| parent | d1bfe4b7107ed2ed98214dbcc3976b3ce42be044 (diff) | |
| download | mullvadvpn-f4fa4ab30e0271dfbe9b335481baec2aee1dc6a2.tar.xz mullvadvpn-f4fa4ab30e0271dfbe9b335481baec2aee1dc6a2.zip | |
Fix creating quantum secure connection showing erroneously
Diffstat (limited to 'android/app')
| -rw-r--r-- | android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/ConnectionStatus.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/ConnectionStatus.kt b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/ConnectionStatus.kt index c59b603547..f0cf18f65c 100644 --- a/android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/ConnectionStatus.kt +++ b/android/app/src/main/kotlin/net/mullvad/mullvadvpn/ui/ConnectionStatus.kt @@ -21,7 +21,7 @@ class ConnectionStatus(parentView: View, context: Context) { when (state.actionAfterDisconnect) { ActionAfterDisconnect.Nothing -> disconnected() ActionAfterDisconnect.Block -> connected(false) - ActionAfterDisconnect.Reconnect -> connecting(state.isSecured()) + ActionAfterDisconnect.Reconnect -> connecting(false) } } is TunnelState.Disconnected -> disconnected() |
