From 8abbc1072b365dd8d83785bb9199e588f9ef5bf0 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Mon, 21 Dec 2020 23:09:34 -0500 Subject: [PATCH] additionally disallow ; in nicknames --- irc/strings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc/strings.go b/irc/strings.go index 88f626f4..241f1703 100644 --- a/irc/strings.go +++ b/irc/strings.go @@ -35,7 +35,7 @@ const ( // #1436: we discovered that these characters are problematic, // so we're disallowing them in new nicks/account names, but allowing // previously registered names - disfavoredNameCharacters = `<>'"` + disfavoredNameCharacters = `<>'";` ) var (