even more fixes

This commit is contained in:
Andreas Neue 2016-07-25 12:12:07 +02:00
parent efe1ca104c
commit f0e2c14879
1 changed files with 2 additions and 2 deletions

View File

@ -361,11 +361,11 @@ func handleCmdMode(sv *Server, msg *irc.Message) {
if _, exists := sv.chUsers[chid]; !exists {
return
}
if _, exists = msg.Args[1]; !exists {
if _, exists := msg.Args[1]; !exists {
return
}
modeFlag := strings.ToLower(msg.Args[1])
if _, exists = msg.Args[2]; !exists {
if _, exists := msg.Args[2]; !exists {
modeTar := ""
} else {
modeTar := strings.ToLower(msg.Args[2])