mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 09:31:01 +01: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:
parent
5924cab7b3
commit
3508d476ff
1 changed files with 1 additions and 1 deletions
|
@ -1381,7 +1381,7 @@ const FilterOriginMissSet = class extends FilterOriginHitSet {
|
||||||
|
|
||||||
logData(details) {
|
logData(details) {
|
||||||
details.domains.push(
|
details.domains.push(
|
||||||
'~' + this.domainOpt.replace('|', '|~')
|
'~' + this.domainOpt.replace(/\|/g, '|~')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue