diff --git a/downstream.go b/downstream.go index 9b5cf78..9bd3c5d 100644 --- a/downstream.go +++ b/downstream.go @@ -1682,6 +1682,8 @@ func parseNickServCredentials(text, nick string) (username, password string, ok username = nick password = params[1] } + default: + return "", "", false } return username, password, true }