From 9276b9919c3e48ee2463641c31ceb046fc4df1d3 Mon Sep 17 00:00:00 2001 From: gorhill Date: Mon, 13 Jul 2015 07:41:02 -0400 Subject: [PATCH] this fixes #490 --- src/js/traffic.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/traffic.js b/src/js/traffic.js index 5a1bb1390..e69fae310 100644 --- a/src/js/traffic.js +++ b/src/js/traffic.js @@ -191,7 +191,9 @@ var onBeforeRootFrameRequest = function(details) { // https://github.com/chrisaljoudi/uBlock/issues/1128 // Do not block if the match begins after the hostname, except when // the filter is specifically of type `other`. - if ( result.charAt(1) === 'b' && (snfe.keyRegister & 0xF0) !== 0x80 ) { + // https://github.com/gorhill/uBlock/issues/490 + // Removing this for the time being, will need a new, dedicated type. + if ( result.charAt(1) === 'b' ) { result = toBlockDocResult(requestURL, requestHostname, result); } }