1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 16:23:44 +00:00

Minor tweak so old server doesn't break autofill (#385)

This commit is contained in:
Thomas Rittson
2021-05-20 06:47:45 +10:00
committed by GitHub
parent 79e6d012c5
commit 3ab710389b

View File

@@ -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));
if (ciphers.length === 0) {
return null;
}