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() }; };