From: Björn Busse Date: Mon, 28 Sep 2015 04:22:17 +0000 (+0200) Subject: Increase client compatibility - let Quassel IRC users join X-Git-Tag: 1.2~11^2 X-Git-Url: http://www.git.cypherpunks.ru/?p=goircd.git;a=commitdiff_plain;h=5a17f44b24340dc970bbbbfb7420fb86f88837b7 Increase client compatibility - let Quassel IRC users join Quassel prefixes the nickname in the NICK command with a colon. This seems to be in accordance with rfc2812. Therefor check if the first character of a nickname is a colon and remove it. --- diff --git a/daemon.go b/daemon.go index 6b44039..7af810c 100644 --- a/daemon.go +++ b/daemon.go @@ -180,6 +180,9 @@ func (daemon *Daemon) ClientRegister(client *Client, command string, cols []stri return } nickname := cols[1] + if (strings.HasPrefix(nickname, ":")) { + nickname = strings.TrimPrefix(nickname, ":") + } for existingClient := range daemon.clients { if existingClient.nickname == nickname { client.ReplyParts("433", "*", nickname, "Nickname is already in use")