1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-19 02:35:05 +12:00

regression

This commit is contained in:
gorhill 2014-10-20 22:13:18 -04:00
parent ff0470dfa1
commit d72e544e5a

View file

@ -177,7 +177,7 @@ var onBeforeChromeExtensionRequestHandler = function(details) {
// Is the target page still blacklisted?
var pageURL = decodeURIComponent(matches[1]);
var hostname = decodeURIComponent(matches[2]);
if ( µMatrix.mustBlock(this.scopeFromURL(pageURL), hostname, '*') ) {
if ( µMatrix.mustBlock(µMatrix.scopeFromURL(pageURL), hostname, '*') ) {
return;
}