summaryrefslogtreecommitdiffhomepage
path: root/android/src
diff options
context:
space:
mode:
authorEmīls Piņķis <emils@mullvad.net>2019-08-14 11:37:26 +0100
committerEmīls Piņķis <emils@mullvad.net>2019-08-19 16:42:01 +0100
commite061817f71f94348d32613b32a28d6b279f06328 (patch)
tree9d6e59e1159ff7529efde48e9ff83bbd8af8ae3b /android/src
parent268096491800b5857fdc95be84dc684859d9c5b7 (diff)
downloadmullvadvpn-e061817f71f94348d32613b32a28d6b279f06328.tar.xz
mullvadvpn-e061817f71f94348d32613b32a28d6b279f06328.zip
Always return unvalidated key from daemon
Diffstat (limited to 'android/src')
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/model/KeygenEvent.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/model/KeygenEvent.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/model/KeygenEvent.kt
index b5938d65f6..b93794d44c 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/model/KeygenEvent.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/model/KeygenEvent.kt
@@ -1,7 +1,7 @@
package net.mullvad.mullvadvpn.model
sealed class KeygenEvent {
- class NewKey(var publicKey: PublicKey) : KeygenEvent()
+ class NewKey(val publicKey: PublicKey, val verified: Boolean?) : KeygenEvent()
class TooManyKeys : KeygenEvent()
class GenerationFailure : KeygenEvent()
}