bugfix to prev commit

This commit is contained in:
Dave Horton
2022-02-24 14:16:14 -05:00
parent 221cd8bd0d
commit 64b31120a5

View File

@@ -313,14 +313,14 @@ class CallSession extends Emitter {
this.logger.error(err, `Error executing task #${stackNum}:${taskNum}: ${task.name}`); this.logger.error(err, `Error executing task #${stackNum}:${taskNum}: ${task.name}`);
break; break;
} }
}
if (0 === this.tasks.length && this.hasStableDialog && this.requestor instanceof WsRequestor) { if (0 === this.tasks.length && this.hasStableDialog && this.requestor instanceof WsRequestor) {
try { try {
await this._awaitCommandsOrHangup(); await this._awaitCommandsOrHangup();
} catch (err) { } catch (err) {
this.logger.info(err, 'CallSession:exec - error waiting for new commands'); this.logger.info(err, 'CallSession:exec - error waiting for new commands');
break; break;
}
} }
} }
} }