mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
use some
This commit is contained in:
@@ -36,7 +36,7 @@ export class UnsecuredWebsitesReportComponent extends CipherReportComponent impl
|
||||
if (c.type !== CipherType.Login || !c.login.hasUris) {
|
||||
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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user