mirror of
https://github.com/bitwarden/browser
synced 2025-12-06 00:13:28 +00:00
Handle null or undefined fields (#14832)
This commit is contained in:
@@ -164,8 +164,8 @@ export class Fido2Credential extends Domain {
|
||||
keyCurve: this.keyCurve.toJSON(),
|
||||
keyValue: this.keyValue.toJSON(),
|
||||
rpId: this.rpId.toJSON(),
|
||||
userHandle: this.userHandle.toJSON(),
|
||||
userName: this.userName.toJSON(),
|
||||
userHandle: this.userHandle?.toJSON(),
|
||||
userName: this.userName?.toJSON(),
|
||||
counter: this.counter.toJSON(),
|
||||
rpName: this.rpName?.toJSON(),
|
||||
userDisplayName: this.userDisplayName?.toJSON(),
|
||||
|
||||
Reference in New Issue
Block a user