Skip to content

Commit

Permalink
Fixed the Passkey ctor
Browse files Browse the repository at this point in the history
  • Loading branch information
idimov-keeper committed Apr 11, 2024
1 parent daf4902 commit b7181df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -595,7 +595,7 @@ data class Passkeys @JvmOverloads constructor(
var required: Boolean? = null,
var privacyScreen: Boolean? = null,
val value: MutableList<Passkey>) : KeeperRecordField() {
constructor(value: Passkey): this(null, null, mutableListOf(value))
constructor(value: Passkey): this(null, null, null, mutableListOf(value))
}

@Serializable
Expand Down

0 comments on commit b7181df

Please sign in to comment.