diff --git a/src/background/runtime.background.ts b/src/background/runtime.background.ts index 2bf14393b06..2e3ea993c9a 100644 --- a/src/background/runtime.background.ts +++ b/src/background/runtime.background.ts @@ -267,7 +267,7 @@ export default class RuntimeBackground { const usernameMatches = ciphers.filter(c => c.login.username != null && c.login.username.toLowerCase() === message.username); - if (usernameMatches.length === 1) { + if (usernameMatches.length >= 1) { await this.updateCipher(usernameMatches[0], message.password); return; }