code review

This commit is contained in:
gorhill 2015-02-23 23:25:14 -05:00
parent c7bab5502e
commit aa6e0d563d
1 changed files with 19 additions and 18 deletions

View File

@ -571,7 +571,9 @@ FilterContainer.prototype.compile = function(s, out) {
var i = hostnames.length;
if ( i === 0 ) {
this.compileGenericSelector(parsed, out);
} else {
return true;
}
// https://github.com/gorhill/uBlock/issues/151
// Negated hostname means the filter applies to all non-negated hostnames
// of same filter OR globally if there is no non-negated hostnames.
@ -591,7 +593,6 @@ FilterContainer.prototype.compile = function(s, out) {
if ( applyGlobally ) {
this.compileGenericSelector(parsed, out);
}
}
return true;
};