From 77c3ad2812a40829ae03ffbd576327c7bf4cb113 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sun, 20 Aug 2023 13:14:36 -0400 Subject: [PATCH] Fix bad regression in cosmetic filtering Related commit: https://github.com/gorhill/uBlock/commit/393fd90f9d0e0326d559e9761c705c6ae30222de --- src/js/static-filtering-parser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/static-filtering-parser.js b/src/js/static-filtering-parser.js index 55414d941..55110b5d1 100644 --- a/src/js/static-filtering-parser.js +++ b/src/js/static-filtering-parser.js @@ -3459,7 +3459,7 @@ class ExtSelectorCompiler { const before = out[out.length-1]; if ( before.endsWith(' ') === false ) { return false; } } - out.push('*'); + out.push(s); break; } return true;