Skip to content

Commit

Permalink
Update scripts/collect-unresolved-breaches-addresses.js
Browse files Browse the repository at this point in the history
Co-authored-by: luke crouch <luke.crouch@gmail.com>
  • Loading branch information
maxxcrawford and groovecoder authored Aug 10, 2020
1 parent dfd240f commit 0aebf63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/collect-unresolved-breaches-addresses.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const HIBP = require("../hibp");
async function checkIfBreachesExist(sha1, breaches) {
const breachResults = await HIBP.getBreachesForEmail(sha1, breaches, true);

if (breachResults.length > 1) {
if (breachResults.length >= 1) {
return true;
}

Expand Down

0 comments on commit 0aebf63

Please sign in to comment.