aboutsummaryrefslogtreecommitdiff
path: root/cmd_cap.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd_cap.go')
-rw-r--r--cmd_cap.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_cap.go b/cmd_cap.go
index 45aaacc..a984c07 100644
--- a/cmd_cap.go
+++ b/cmd_cap.go
@@ -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":