bugfix: when bargein is disabled, kill the background gather and do not restart it

This commit is contained in:
Dave Horton
2022-08-11 14:32:37 +02:00
parent f580bc60f5
commit 3d475217ca
2 changed files with 5 additions and 3 deletions

View File

@@ -93,7 +93,7 @@ class TaskConfig extends Task {
}, 'Config: updated recognizer');
}
if ('enable' in this.bargeIn) {
if (this.gatherOpts) {
if (this.bargeIn.enable === true && this.gatherOpts) {
this.gatherOpts.recognizer = this.hasRecognizer ?
this.recognizer :
{
@@ -103,7 +103,7 @@ class TaskConfig extends Task {
this.logger.info({opts: this.gatherOpts}, 'Config: enabling bargeIn');
cs.enableBotMode(this.gatherOpts, this.autoEnable);
}
else {
else if (this.bargeIn.enable === false) {
this.logger.info('Config: disabling bargeIn');
cs.disableBotMode();
}