From c45fe3fbefdbaa04f7ea0f964fc241f9adb77387 Mon Sep 17 00:00:00 2001 From: gorhill Date: Thu, 31 Jul 2014 00:21:25 -0400 Subject: [PATCH] just to be sure fix is understood --- js/abp-filters.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/abp-filters.js b/js/abp-filters.js index 79cdbc81d..582243b63 100644 --- a/js/abp-filters.js +++ b/js/abp-filters.js @@ -850,7 +850,8 @@ FilterParser.prototype.parseOptType = function(raw, not) { if ( k === type ) { continue; } // https://github.com/gorhill/uBlock/issues/121 // `popup` is a special type, it cannot be set for filters intended - // for real net request types + // for real net request types. The test is safe since there is no + // such thing as a filter using `~popup`. if ( k === 'popup' ) { continue; } this.types.push(typeNameToTypeValue[k]); }