diff --git a/src/services/cipher.service.ts b/src/services/cipher.service.ts index eceb8556b8..6fee279de1 100644 --- a/src/services/cipher.service.ts +++ b/src/services/cipher.service.ts @@ -1106,7 +1106,7 @@ export class CipherService implements CipherServiceAbstraction { if (autofillOnPageLoad) { const autofillOnPageLoadDefault = await this.storageService.get(ConstantsService.autoFillOnPageLoadDefaultKey); ciphers = ciphers.filter(cipher => cipher.login.autofillOnPageLoad || - (cipher.login.autofillOnPageLoad == null && autofillOnPageLoadDefault)); + (cipher.login.autofillOnPageLoad == null && autofillOnPageLoadDefault !== false)); if (ciphers.length === 0) { return null; }