From 085e600078f332697296340074c7b6f1d27dfdba Mon Sep 17 00:00:00 2001 From: gorhill Date: Wed, 4 Feb 2015 00:04:43 -0500 Subject: [PATCH] this addresses non-UI part of #682 --- src/js/dynamic-net-filtering.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/js/dynamic-net-filtering.js b/src/js/dynamic-net-filtering.js index f3a2cca4a..071d414ad 100644 --- a/src/js/dynamic-net-filtering.js +++ b/src/js/dynamic-net-filtering.js @@ -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; };