mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-06-03 03:07:13 +02:00
Fix interrupt bug when connecting over SSH with multi-node
This commit is contained in:
parent
f15629682c
commit
21b54eda7e
1 changed files with 11 additions and 7 deletions
|
@ -47,13 +47,17 @@ module.exports = class UserInterruptQueue
|
|||
// pause defaulted on
|
||||
interruptItem.pause = _.get(interruptItem, 'pause', true);
|
||||
|
||||
this.client.currentMenuModule.attemptInterruptNow(interruptItem, (err, ateIt) => {
|
||||
if(err) {
|
||||
// :TODO: Log me
|
||||
} else if(true !== ateIt) {
|
||||
this.queue.push(interruptItem);
|
||||
}
|
||||
});
|
||||
try {
|
||||
this.client.currentMenuModule.attemptInterruptNow(interruptItem, (err, ateIt) => {
|
||||
if(err) {
|
||||
// :TODO: Log me
|
||||
} else if(true !== ateIt) {
|
||||
this.queue.push(interruptItem);
|
||||
}
|
||||
});
|
||||
} catch(e) {
|
||||
this.queue.push(interruptItem);
|
||||
}
|
||||
}
|
||||
|
||||
hasItems() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue