mirror of
https://github.com/bitwarden/browser
synced 2025-01-12 10:27:20 +01:00
Prevent malformed URLs from loading current tab
This commit is contained in:
parent
d308245237
commit
0d3b32a10d
@ -333,9 +333,12 @@ export class CipherService implements CipherServiceAbstraction {
|
||||
this.settingsService.getEquivalentDomains().then((eqDomains: any[][]) => {
|
||||
let matches: any[] = [];
|
||||
eqDomains.forEach((eqDomain) => {
|
||||
if (eqDomain.length && eqDomain.indexOf(domain) >= 0) {
|
||||
matches = matches.concat(eqDomain);
|
||||
try {
|
||||
if (eqDomain.length && eqDomain.indexOf(domain) >= 0) {
|
||||
matches = matches.concat(eqDomain);
|
||||
}
|
||||
}
|
||||
catch {}
|
||||
});
|
||||
|
||||
if (!matches.length) {
|
||||
|
Loading…
Reference in New Issue
Block a user