|
|
@ -169,13 +169,8 @@ export class UserService { |
|
|
|
secret: txUser.totpKey, |
|
|
|
}); |
|
|
|
|
|
|
|
console.log(txUser.totpKey); |
|
|
|
console.log(code); |
|
|
|
|
|
|
|
const valid = totp.validate({ token: code, window: 1 }); |
|
|
|
|
|
|
|
console.log(valid); |
|
|
|
|
|
|
|
if (valid === null) { |
|
|
|
return { success: false, error: 'INVALID_TOTP_CODE' }; |
|
|
|
} |
|
|
@ -213,8 +208,6 @@ export class UserService { |
|
|
|
secret: txUser.totpKey, |
|
|
|
}); |
|
|
|
|
|
|
|
console.log({ code, key: txUser.totpKey }); |
|
|
|
|
|
|
|
const valid = totp.validate({ token: code, window: 1 }); |
|
|
|
|
|
|
|
if (valid === null) { |
|
|
|