mirror of
https://codeberg.org/emersion/gamja.git
synced 2024-11-14 19:05:01 -05: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…
Reference in a new issue