mirror of
https://git.sr.ht/~emersion/gamja
synced 2025-04-15 08:24:57 -04:00
Hide CAP and AUTHENTICATE messages in server buffer
This commit is contained in:
parent
544303923c
commit
a475b6d844
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue