mirror of https://github.com/gorhill/uBlock.git
Use `, ` when normalizing list of selectors
This commit is contained in:
parent
43a034ac44
commit
e23ce99f34
|
@ -3478,7 +3478,7 @@ class ExtSelectorCompiler {
|
||||||
out.push(this.astSerializePart(part));
|
out.push(this.astSerializePart(part));
|
||||||
break;
|
break;
|
||||||
case 'Selector':
|
case 'Selector':
|
||||||
if ( out.length !== 0 ) { out.push(','); }
|
if ( out.length !== 0 ) { out.push(', '); }
|
||||||
break;
|
break;
|
||||||
case 'SelectorList':
|
case 'SelectorList':
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue