mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
this fixes #840
This commit is contained in:
parent
6323c8c69d
commit
f65d44ba47
1 changed files with 6 additions and 0 deletions
|
|
@ -521,6 +521,12 @@ Matrix.prototype.fromString = function(text, append) {
|
|||
continue;
|
||||
}
|
||||
|
||||
// https://github.com/gorhill/uBlock/issues/840
|
||||
// Discard invalid rules
|
||||
if ( desHostname !== '*' && type !== '*' ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
action = nameToActionMap[fields[3]];
|
||||
if ( typeof action !== 'number' || action < 0 || action > 3 ) {
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Reference in a new issue