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

minor code review

This commit is contained in:
gorhill 2015-11-28 10:29:05 -05:00
parent be7db835a8
commit f2d2133d76

View File

@ -523,6 +523,7 @@ var filterRequests = function(pageStore, details) {
var hostnameFromURI = µb.URI.hostnameFromURI;
var redirectEngine = µb.redirectEngine;
var punycodeURL = vAPI.punycodeURL;
// Create evaluation context
var context = pageStore.createContextFromFrameHostname(details.pageHostname);
@ -531,7 +532,7 @@ var filterRequests = function(pageStore, details) {
var i = requests.length;
while ( i-- ) {
request = requests[i];
context.requestURL = vAPI.punycodeURL(request.url);
context.requestURL = punycodeURL(request.url);
// https://github.com/gorhill/uBlock/issues/978
// Ignore invalid URLs: these would not occur on the HTTP
// observer side.