mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-10 01:02:08 +01:00
[mv3] Drop useless property in generated content scripts
This commit is contained in:
parent
bd7318da3c
commit
3b70d0e134
1 changed files with 2 additions and 1 deletions
|
@ -637,7 +637,8 @@ async function processDeclarativeCosmeticFilters(assetDetails, mapin) {
|
|||
mapin.forEach((details, jsonSelector) => {
|
||||
const selector = JSON.parse(jsonSelector);
|
||||
if ( selector.cssable !== true ) { return; }
|
||||
declaratives.set(jsonSelector, details);
|
||||
selector.cssable = undefined;
|
||||
declaratives.set(JSON.stringify(selector), details);
|
||||
});
|
||||
if ( declaratives.size === 0 ) { return 0; }
|
||||
|
||||
|
|
Loading…
Reference in a new issue