mirror of https://github.com/gorhill/uBlock.git
Fix bad rules making it into the final ruleset files
This commit is contained in:
parent
8dfefe5910
commit
d4b7169421
|
@ -219,7 +219,7 @@ const isGood = rule =>
|
||||||
|
|
||||||
async function processNetworkFilters(assetDetails, network) {
|
async function processNetworkFilters(assetDetails, network) {
|
||||||
const replacer = (k, v) => {
|
const replacer = (k, v) => {
|
||||||
if ( k.startsWith('__') ) { return; }
|
if ( k.startsWith('_') ) { return; }
|
||||||
if ( Array.isArray(v) ) {
|
if ( Array.isArray(v) ) {
|
||||||
return v.sort();
|
return v.sort();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue