From a475b6d844aa1d2da11c2c9fb88453092acef50e Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Thu, 25 Jun 2020 12:16:42 +0200 Subject: [PATCH] Hide CAP and AUTHENTICATE messages in server buffer --- components/app.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/app.js b/components/app.js index 16fcc9b..d314d28 100644 --- a/components/app.js +++ b/components/app.js @@ -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); }