mirror of https://github.com/gorhill/uBlock.git
Fix rendering of punycoded hostname in popup panel
Regression from:
- 75deadd31e
This commit is contained in:
parent
0c66680a2c
commit
cd237ed3e1
|
@ -378,7 +378,7 @@ const buildAllFirewallRows = function() {
|
|||
|
||||
const hnDetails = hostnameDict[des] || {};
|
||||
const isDomain = des === hnDetails.domain;
|
||||
const prettyDomainName = des.startsWith('xn--')
|
||||
const prettyDomainName = des.includes('xn--')
|
||||
? punycode.toUnicode(des)
|
||||
: des;
|
||||
const isPunycoded = prettyDomainName !== des;
|
||||
|
|
Loading…
Reference in New Issue