mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix bad rules making it into the final ruleset files
This commit is contained in:
parent
8dfefe5910
commit
d4b7169421
1 changed files with 1 additions and 1 deletions
|
|
@ -219,7 +219,7 @@ const isGood = rule =>
|
|||
|
||||
async function processNetworkFilters(assetDetails, network) {
|
||||
const replacer = (k, v) => {
|
||||
if ( k.startsWith('__') ) { return; }
|
||||
if ( k.startsWith('_') ) { return; }
|
||||
if ( Array.isArray(v) ) {
|
||||
return v.sort();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue