Skip to content

Commit b8f2167

Browse files
authored
BUGFIX: Reverse order of domain ascii/unicode displayed (#3872)
# Issue Consensus in #2874 is that the domains should be displayed as: xn--p1ai.com (рф.com)
1 parent efa2e1e commit b8f2167

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/printer/printer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (c ConsolePrinter) StartDomain(dc *models.DomainConfig) {
9393
if dc.Name == dc.NameUnicode {
9494
fmt.Fprintf(c.Writer, "******************** Domain: %s\n", dc.Name)
9595
} else {
96-
fmt.Fprintf(c.Writer, "******************** Domain: %s (%s)\n", dc.NameUnicode, dc.Name)
96+
fmt.Fprintf(c.Writer, "******************** Domain: %s (%s)\n", dc.Name, dc.NameUnicode)
9797
}
9898
}
9999

0 commit comments

Comments
 (0)