From a4ec9f5dae06ca5cde0df6ec072c10df9893795b Mon Sep 17 00:00:00 2001 From: gorhill Date: Tue, 23 May 2017 12:16:53 -0400 Subject: [PATCH] fix #2640 --- src/js/static-net-filtering.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 7c08e9553..a3ba6b5b7 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -687,8 +687,8 @@ FilterRegex.prototype.match = function(url) { FilterRegex.prototype.logData = function() { return { - raw: '/' + this.s + '/', - regex: this.s, + raw: '/' + this.re.source + '/', + regex: this.re.source, compiled: this.compile() }; };