Add support for /ban without argument

This commit is contained in:
Simon Ser 2021-06-03 10:11:48 +02:00
parent 5004f6c89c
commit a4294975a2
3 changed files with 50 additions and 30 deletions

View file

@ -898,6 +898,11 @@ export default class App extends Component {
}
});
break;
case irc.RPL_BANLIST:
case irc.RPL_ENDOFBANLIST:
var channel = msg.params[1];
this.addMessage(netID, channel, msg);
break;
case "CAP":
case "AUTHENTICATE":
case "PING":