Introduce Client.who

This commit is contained in:
Simon Ser 2021-05-31 17:11:42 +02:00
parent 02145b45ad
commit 619f1db08f
2 changed files with 20 additions and 1 deletions

View file

@ -914,7 +914,7 @@ export default class App extends Component {
this.switchToChannel = target;
client.send({ command: "JOIN", params: [target] });
} else {
client.send({ command: "WHO", params: [target] });
client.who(target);
this.createBuffer(netID, target);
this.switchBuffer({ network: netID, name: target });
}