mirror of https://github.com/gorhill/uBlock.git
fix regression reported at http://forums.mozillazine.org/viewtopic.php?p=14748380#p14748380
This commit is contained in:
parent
0464075dfc
commit
5f63398af8
|
@ -1339,8 +1339,7 @@ FilterContainer.prototype.skipGenericCompiledContent = function(lineIter) {
|
|||
continue;
|
||||
}
|
||||
|
||||
fieldIter.first(line);
|
||||
field0 = fieldIter.next();
|
||||
field0 = fieldIter.first(line);
|
||||
field1 = fieldIter.next();
|
||||
|
||||
// h [\v] hash [\v] example.com [\v] .promoted-tweet
|
||||
|
@ -1406,8 +1405,7 @@ FilterContainer.prototype.skipCompiledContent = function(lineIter) {
|
|||
continue;
|
||||
}
|
||||
|
||||
fieldIter.first(line);
|
||||
field0 = fieldIter.next();
|
||||
field0 = fieldIter.first(line);
|
||||
|
||||
// js [\v] hash [\v] example.com [\v] script:contains(...)
|
||||
// js [\v] hash [\v] example.com [\v] script:inject(...)
|
||||
|
|
Loading…
Reference in New Issue