Merge branch 'master' of github.com:NuSkooler/enigma-bbs into 216-waiting-for-caller
This commit is contained in:
commit
52ae983cb4
|
@ -152,9 +152,10 @@ module.exports = class Door {
|
|||
this.doorPty.kill();
|
||||
}
|
||||
|
||||
if(this.client.term.output) {
|
||||
this.client.term.output.unpipe(piped);
|
||||
this.client.term.output.resume();
|
||||
const output = this.client.term.output;
|
||||
if(output) {
|
||||
output.unpipe(piped);
|
||||
output.resume();
|
||||
}
|
||||
this.restored = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue