1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

Fix bad logger output for miss set of hostnames

Related issue:
- https://github.com/uBlockOrigin/uBlock-issues/issues/1076
This commit is contained in:
Raymond Hill 2020-05-29 07:19:23 -04:00
parent 5924cab7b3
commit 3508d476ff
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -1381,7 +1381,7 @@ const FilterOriginMissSet = class extends FilterOriginHitSet {
logData(details) {
details.domains.push(
'~' + this.domainOpt.replace('|', '|~')
'~' + this.domainOpt.replace(/\|/g, '|~')
);
}