1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

this addresses non-UI part of #682

This commit is contained in:
gorhill 2015-02-04 00:04:43 -05:00
parent a9e9ea454f
commit 085e600078

View File

@ -275,6 +275,12 @@ Matrix.prototype.evaluateCellZY = function(srcHostname, desHostname, type) {
if ( this.r !== 0 ) { return this; }
}
// https://github.com/gorhill/uBlock/issues/682
// Any destination, any type
this.type = '*';
this.r = this.evaluateCellZ(srcHostname, '*', '*');
if ( this.r !== 0 ) { return this; }
this.type = '';
return this;
};