mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-13 08:04:34 +02:00
Better disconnect - should resolve issues with SSH
This commit is contained in:
parent
43c11dc288
commit
8ba80426e3
3 changed files with 21 additions and 3 deletions
|
@ -550,6 +550,15 @@ function TelnetClient(input, output) {
|
|||
this.emit('ready', { firstMenu : Config().loginServers.telnet.firstMenu } );
|
||||
}
|
||||
};
|
||||
|
||||
this.disconnect = function() {
|
||||
try {
|
||||
return this.output.end.apply(this.output, arguments);
|
||||
}
|
||||
catch(e) {
|
||||
// nothing
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
util.inherits(TelnetClient, baseClient.Client);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue