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) => {
|
||||
try {
|
||||
if (eqDomain.length && eqDomain.indexOf(domain) >= 0) {
|
||||
matches = matches.concat(eqDomain);
|
||||
}
|
||||
}
|
||||
catch {}
|
||||
});
|
||||
|
||||
if (!matches.length) {
|
||||
|
|
Loading…
Reference in New Issue