Commit e8642413 authored by Josh Ji's avatar Josh Ji

fix null value problem

parent c2269460
Pipeline #3077 canceled with stages
......@@ -329,6 +329,14 @@ function makeCredential(advancedOptions) {
}
if ('authenticatorSelection' in options && options.authenticatorSelection != null) {
makeCredentialOptions.authenticatorSelection = options.authenticatorSelection;
if('authenticatorAttachment' in makeCredentialOptions.authenticatorSelection && makeCredentialOptions.authenticatorSelection.authenticatorAttachment == null)
makeCredentialOptions.authenticatorSelection.authenticatorAttachment = undefined
if('residentKey' in makeCredentialOptions.authenticatorSelection && makeCredentialOptions.authenticatorSelection.residentKey == null)
makeCredentialOptions.authenticatorSelection.residentKey = undefined
if('requireResidentKey' in makeCredentialOptions.authenticatorSelection && makeCredentialOptions.authenticatorSelection.requireResidentKey == null)
makeCredentialOptions.authenticatorSelection.requireResidentKey = undefined
if('userVerification' in makeCredentialOptions.authenticatorSelection && makeCredentialOptions.authenticatorSelection.userVerification == null)
makeCredentialOptions.authenticatorSelection.userVerification = undefined
}
if ('attestation' in options && options.attestation != null) {
makeCredentialOptions.attestation = options.attestation;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment