From 6e66df59b7128f7ef41ddcc9e7bf905304d672b0 Mon Sep 17 00:00:00 2001 From: Naoaki Iwakiri Date: Mon, 27 Jan 2020 22:30:19 +0900 Subject: [PATCH] Stop showing score 3 passwords as weak passwords (#445) --- src/app/tools/weak-passwords-report.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tools/weak-passwords-report.component.ts b/src/app/tools/weak-passwords-report.component.ts index 1df7045a3a..e8bf3639cd 100644 --- a/src/app/tools/weak-passwords-report.component.ts +++ b/src/app/tools/weak-passwords-report.component.ts @@ -63,7 +63,7 @@ export class WeakPasswordsReportComponent extends CipherReportComponent implemen this.passwordStrengthCache.set(cacheKey, result.score); } const score = this.passwordStrengthCache.get(cacheKey); - if (score != null && score <= 3) { + if (score != null && score <= 2) { this.passwordStrengthMap.set(c.id, this.scoreKey(score)); weakPasswordCiphers.push(c); }