diff options
Diffstat (limited to 'cmd_cap.go')
-rw-r--r-- | cmd_cap.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -13,7 +13,7 @@ func handleClientCap(msg RMsg, client *Client) bool { client.Send(MakeMsg(self, ERR_NEEDMOREPARAMS, "CAP", "Not enough parameters")) return true } - switch (strings.ToUpper(msg.Params[0])) { + switch strings.ToUpper(msg.Params[0]) { case "LS": client.Send(MakeMsg(self, "CAP", client.Nick, "LS", "sasl=PLAIN,EXTERNAL")) case "REQ": |