From 1352316492bc8fb6b33af5983b69b4044bafd520 Mon Sep 17 00:00:00 2001 From: Lokowitz Date: Tue, 23 Sep 2025 17:44:34 +0000 Subject: [PATCH] update securityKey --- server/routers/auth/securityKey.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/routers/auth/securityKey.ts b/server/routers/auth/securityKey.ts index a3389ba7..7e131dfd 100644 --- a/server/routers/auth/securityKey.ts +++ b/server/routers/auth/securityKey.ts @@ -605,7 +605,7 @@ export async function verifyAuthentication( } // Find the security key in database - const credentialId = Buffer.from(credential.id, 'base64').toString('base64'); + const credentialId = credential.id; const [securityKey] = await db .select() .from(securityKeys)