mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
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
Block a user