From 79af00f3b1788a0c05551051a4033819a5238323 Mon Sep 17 00:00:00 2001 From: "fox.cpp" Date: Sat, 9 May 2020 23:50:06 +0300 Subject: [PATCH] Fix-up 153661b71d5956132ca1efb95f924f0d53a1b157 --- conn.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conn.go b/conn.go index b5dfc1a..368bbf5 100644 --- a/conn.go +++ b/conn.go @@ -417,7 +417,7 @@ func encodeXtext(raw string) string { out.WriteRune('+') out.WriteString(strings.ToUpper(strconv.FormatInt(int64(ch), 16))) } - if ch > '~' && ch < '~' { // printable non-space US-ASCII + if ch > '!' && ch < '~' { // printable non-space US-ASCII out.WriteRune(ch) } // Non-ASCII.