commands: add password param to /join
This commit is contained in:
parent
9f93e200ed
commit
fab42ba2ee
3 changed files with 14 additions and 6 deletions
|
@ -1122,7 +1122,7 @@ export default class App extends Component {
|
|||
client.monitor(target);
|
||||
}
|
||||
|
||||
open(target, serverID) {
|
||||
open(target, serverID, password) {
|
||||
if (!serverID) {
|
||||
serverID = State.getActiveServerID(this.state);
|
||||
}
|
||||
|
@ -1132,7 +1132,7 @@ export default class App extends Component {
|
|||
this.switchBuffer({ server: serverID });
|
||||
} else if (client.isChannel(target)) {
|
||||
this.switchToChannel = target;
|
||||
client.join(target).catch((err) => {
|
||||
client.join(target, password).catch((err) => {
|
||||
this.showError(err);
|
||||
});
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue