Hide CAP and AUTHENTICATE messages in server buffer

This commit is contained in:
Simon Ser 2020-06-25 12:16:42 +02:00
parent 544303923c
commit a475b6d844
No known key found for this signature in database
GPG key ID: 0FDE7BE0E88F5E48

View file

@ -285,6 +285,10 @@ export default class App extends Component {
this.setBufferState(channel, { topic });
this.addMessage(channel, msg);
break;
case "CAP":
case "AUTHENTICATE":
// Ignore these
break;
default:
this.addMessage(SERVER_BUFFER, msg);
}