1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Fix bad regression in cosmetic filtering

Related commit:
393fd90f9d
This commit is contained in:
Raymond Hill 2023-08-20 13:14:36 -04:00
parent c4f2f2b6c2
commit 77c3ad2812
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -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;