mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
catch invalid regex
This commit is contained in:
parent
2c43a5f06a
commit
e0190f14be
@ -238,10 +238,12 @@ export class CipherService implements CipherServiceAbstraction {
|
||||
}
|
||||
break;
|
||||
case UriMatchType.RegularExpression:
|
||||
const regex = new RegExp(u.uri, 'i');
|
||||
if (regex.test(url)) {
|
||||
return true;
|
||||
}
|
||||
try {
|
||||
const regex = new RegExp(u.uri, 'i');
|
||||
if (regex.test(url)) {
|
||||
return true;
|
||||
}
|
||||
} catch { }
|
||||
break;
|
||||
case UriMatchType.Never:
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user