From e49debd5dde52a8318bc31fa2dae1e7171c0d91a Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Fri, 8 Mar 2019 07:26:55 -0500 Subject: [PATCH] Properly report `:spath` operator of procedural cosmetic filters in logger Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/453 --- src/js/static-ext-filtering.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/js/static-ext-filtering.js b/src/js/static-ext-filtering.js index da48cdf84..7e0bef59c 100644 --- a/src/js/static-ext-filtering.js +++ b/src/js/static-ext-filtering.js @@ -332,6 +332,8 @@ raw.push(':not', '(', decompile(task[1]), ')'); break; case ':spath': + raw.push(task[1]); + break; case ':watch-attrs': case ':xpath': raw.push(task[0], '(', task[1], ')');