From da5f1c80d30badeec371ee4fe4bcff9ebe48e2ea Mon Sep 17 00:00:00 2001 From: gorhill Date: Fri, 19 May 2017 21:07:37 -0400 Subject: [PATCH] fix long latent issue exposed by acf7562b0f21a0ebf9eeb97a67dfcb8beefa0072 --- src/js/static-net-filtering.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 38ecf05d7..7c08e9553 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -1075,7 +1075,7 @@ FilterHostnameDict.prototype.match = function() { hostname = hostname.slice(pos + 1); } this.h = hostname; - return this; + return true; }; FilterHostnameDict.prototype.logData = function() {