always listen after say

This commit is contained in:
akirilyuk
2022-02-03 19:23:30 +01:00
parent b6d0d4cb0e
commit 8b982f20d6

View File

@@ -105,13 +105,7 @@ class TaskGather extends Task {
if (err) return this.logger.error({err}, 'Gather:exec Error playing tts'); if (err) return this.logger.error({err}, 'Gather:exec Error playing tts');
this.logger.debug('Gather: say task completed'); this.logger.debug('Gather: say task completed');
if (!this.killed) { if (!this.killed) {
if (this.listenAfterSpeech) {
startListening(cs, ep); startListening(cs, ep);
} else {
setTimeout(()=> {
// this.notifyTaskDone();
}, 2000);
}
} }
}); });
} }