diff options
author | Matthew Miller <matthew@millerti.me> | 2022-12-10 23:30:00 -0800 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2022-12-10 23:30:00 -0800 |
commit | 981ac565ca2f4e0a6b46dff7b0e9ba7f036b627e (patch) | |
tree | 50b958ee8f6934d1b4a91429f160dce4aeee5170 /packages/server/src/authentication/verifyAuthenticationResponse.ts | |
parent | c56b52a31f3414c2860d2b70c8409ba4c5a748ea (diff) |
Require uv:true when verifying reg and auth resp
Diffstat (limited to 'packages/server/src/authentication/verifyAuthenticationResponse.ts')
-rw-r--r-- | packages/server/src/authentication/verifyAuthenticationResponse.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/authentication/verifyAuthenticationResponse.ts b/packages/server/src/authentication/verifyAuthenticationResponse.ts index c99013e..1506d8d 100644 --- a/packages/server/src/authentication/verifyAuthenticationResponse.ts +++ b/packages/server/src/authentication/verifyAuthenticationResponse.ts @@ -54,7 +54,7 @@ export async function verifyAuthenticationResponse( expectedOrigin, expectedRPID, authenticator, - requireUserVerification, + requireUserVerification = true, advancedFIDOConfig, } = options; const { id, rawId, type: credentialType, response } = credential; |