diff --git a/src/routes/account/forgot-password/post.ts b/src/routes/account/forgot-password/post.ts index cfbc8a2..d85e6ef 100644 --- a/src/routes/account/forgot-password/post.ts +++ b/src/routes/account/forgot-password/post.ts @@ -84,6 +84,7 @@ export async function handler (context: Context) { eq(verifyCodes.code, body.verifyCode) ) ) + .execute() } else return jsonResponse( { diff --git a/src/routes/account/forgot-username/post.ts b/src/routes/account/forgot-username/post.ts index 6c97266..e3976a5 100644 --- a/src/routes/account/forgot-username/post.ts +++ b/src/routes/account/forgot-username/post.ts @@ -83,6 +83,7 @@ export async function handler (context: Context) { eq(verifyCodes.code, body.verifyCode) ) ) + .execute() } else return jsonResponse( {