summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packages/server/src/assertion/verifyAssertionResponse.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/server/src/assertion/verifyAssertionResponse.ts b/packages/server/src/assertion/verifyAssertionResponse.ts
index 015c467..f5ae7f2 100644
--- a/packages/server/src/assertion/verifyAssertionResponse.ts
+++ b/packages/server/src/assertion/verifyAssertionResponse.ts
@@ -44,7 +44,7 @@ export default function verifyAssertionResponse(
const authDataBuffer = base64url.toBuffer(base64AuthenticatorData);
const authDataStruct = parseAuthenticatorData(authDataBuffer);
- const { credentialID, flags, counter } = authDataStruct;
+ const { flags, counter } = authDataStruct;
if (!(flags.up)) {
throw new Error('User was NOT present during assertion!');