mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Use , when normalizing list of selectors
This commit is contained in:
parent
43a034ac44
commit
e23ce99f34
1 changed files with 1 additions and 1 deletions
|
|
@ -3478,7 +3478,7 @@ class ExtSelectorCompiler {
|
|||
out.push(this.astSerializePart(part));
|
||||
break;
|
||||
case 'Selector':
|
||||
if ( out.length !== 0 ) { out.push(','); }
|
||||
if ( out.length !== 0 ) { out.push(', '); }
|
||||
break;
|
||||
case 'SelectorList':
|
||||
break;
|
||||
|
|
|
|||
Loading…
Reference in a new issue