Hide replies to our own internal WHO commands
References: https://todo.sr.ht/~emersion/gamja/88
This commit is contained in:
parent
1ea7c30744
commit
269e034581
2 changed files with 12 additions and 1 deletions
|
@ -849,6 +849,12 @@ export default class App extends Component {
|
|||
let client = this.clients.get(serverID);
|
||||
let chatHistoryBatch = irc.findBatchByType(msg, "chathistory");
|
||||
|
||||
// Reply triggered by some command sent by us, not worth displaying to
|
||||
// the user
|
||||
if (msg.internal) {
|
||||
return [];
|
||||
}
|
||||
|
||||
let target, channel, affectedBuffers;
|
||||
switch (msg.command) {
|
||||
case "MODE":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue