1
0
Fork 0
forked from External/ergo

remove redundant oper check from DEBUG

This commit is contained in:
Shivaram Lingamneni 2018-02-11 23:48:58 -05:00
parent b139386391
commit af256fccd3
2 changed files with 2 additions and 9 deletions

View file

@ -477,14 +477,7 @@ func csHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *Respon
// DEBUG <subcmd>
func debugHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *ResponseBuffer) bool {
param, err := Casefold(msg.Params[0])
if err != nil {
return false
}
if !client.HasMode(modes.Operator) {
return false
}
param := strings.ToUpper(msg.Params[0])
switch param {
case "GCSTATS":