mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
use some
This commit is contained in:
parent
650fc6aa27
commit
b2be44e372
@ -36,7 +36,7 @@ export class UnsecuredWebsitesReportComponent extends CipherReportComponent impl
|
|||||||
if (c.type !== CipherType.Login || !c.login.hasUris) {
|
if (c.type !== CipherType.Login || !c.login.hasUris) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return c.login.uris.find((u) => u.uri != null && u.uri.indexOf('http://') === 0) != null;
|
return c.login.uris.some((u) => u.uri != null && u.uri.indexOf('http://') === 0);
|
||||||
});
|
});
|
||||||
this.ciphers = unsecuredCiphers;
|
this.ciphers = unsecuredCiphers;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user