1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Use , when normalizing list of selectors

This commit is contained in:
Raymond Hill 2023-07-20 08:05:58 -04:00
parent 43a034ac44
commit e23ce99f34
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -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;