Allow ^ in nick (irc). Closes #305

This commit is contained in:
Wim 2017-11-30 00:28:17 +01:00
parent cc3c168162
commit 1d414cf2fd
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ func IsValidNick(nick string) bool {
}
for i := 1; i < len(nick); i++ {
if (nick[i] < 0x41 || nick[i] > 0x7D) && (nick[i] < 0x30 || nick[i] > 0x39) && nick[i] != 0x2D {
if (nick[i] < 0x41 || nick[i] > 0x7E) && (nick[i] < 0x30 || nick[i] > 0x39) && nick[i] != 0x2D {
fmt.Println(nick[i], i, nick)
// a-z, A-Z, 0-9, -, and _\[]{}^|
return false