Signed-off-by: ale <ale@manalejandro.com>
Este commit está contenido en:
ale
2025-12-05 23:40:05 +01:00
padre ee2aaccffe
commit bb234fef1e
Se han modificado 6 ficheros con 59 adiciones y 37 borrados

Ver fichero

@@ -73,7 +73,7 @@ export function isHash(input: string): boolean {
export async function verifyBcrypt(plaintext: string, hash: string): Promise<boolean> {
try {
return await bcrypt.compare(plaintext, hash);
} catch (error) {
} catch (_error) {
return false;
}
}