diff --git a/sdk/java/core/src/main/kotlin/com/keepersecurity/secretsManager/core/RecordData.kt b/sdk/java/core/src/main/kotlin/com/keepersecurity/secretsManager/core/RecordData.kt index 22ce10e7..beaa0444 100644 --- a/sdk/java/core/src/main/kotlin/com/keepersecurity/secretsManager/core/RecordData.kt +++ b/sdk/java/core/src/main/kotlin/com/keepersecurity/secretsManager/core/RecordData.kt @@ -595,7 +595,7 @@ data class Passkeys @JvmOverloads constructor( var required: Boolean? = null, var privacyScreen: Boolean? = null, val value: MutableList) : KeeperRecordField() { - constructor(value: Passkey): this(null, null, mutableListOf(value)) + constructor(value: Passkey): this(null, null, null, mutableListOf(value)) } @Serializable