diff --git a/src/js/static-net-filtering.js b/src/js/static-net-filtering.js index 8609f80e0..eaa09d38f 100644 --- a/src/js/static-net-filtering.js +++ b/src/js/static-net-filtering.js @@ -1645,7 +1645,7 @@ const FilterModifier = class { filterData[idata+2] = args[2]; // type filterData[idata+3] = filterRefAdd({ value: args[3], - cache: null, + $cache: null, }); return idata; } @@ -1694,11 +1694,11 @@ const FilterModifierResult = class { } get cache() { - return this.refs.cache; + return this.refs.$cache; } set cache(a) { - this.refs.cache = a; + this.refs.$cache = a; } logData() { @@ -3523,7 +3523,7 @@ FilterCompiler.prototype.FILTER_UNSUPPORTED = 2; const FilterContainer = function() { this.compilerVersion = '8'; - this.selfieVersion = '8'; + this.selfieVersion = '9'; this.MAX_TOKEN_LENGTH = MAX_TOKEN_LENGTH; this.optimizeTaskId = undefined;