Fix false negative breach report emails

Fixes #1461
This commit is contained in:
lesleyjanenorton 2020-01-17 14:59:05 -06:00
Родитель a09591d819
Коммит 35975a6ac6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -198,7 +198,7 @@ async function _verify(req) {
const verifiedEmailHash = await DB.verifyEmailHash(req.query.token);
let unsafeBreachesForEmail = [];
unsafeBreachesForEmail = await HIBP.getBreachesForEmail(
sha1(verifiedEmailHash.email),
sha1(verifiedEmailHash.email.toLowerCase()),
req.app.locals.breaches,
true,
);