From a217ca42c9551ce622765c11c2c4fd3e0de394b3 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 13 Jan 2018 08:31:13 -0500 Subject: [PATCH] fix https://github.com/nikrolls/uBlock-Edge/issues/101 --- 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 d228282ee..3f5a0c855 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -954,7 +954,7 @@ FilterOriginMixedSet.prototype = Object.create(FilterOrigin.prototype, { i = hostnames.length, hostname; while ( i-- ) { - hostname = hostnames[i].replace(/\./g, '\\.'); + hostname = hostnames[i]; if ( hostname.charCodeAt(0) === 0x7E /* '~' */ ) { noneOf.push(hostname.slice(1)); } else {