fix bug where task.kill is not passed cs (#1315)

This commit is contained in:
Dave Horton
2025-08-07 16:01:45 -04:00
committed by GitHub
parent 1933f4ec0b
commit 66bb466297
2 changed files with 2 additions and 2 deletions

View File

@@ -72,7 +72,7 @@ class TaskListen extends Task {
} catch (err) {
this.logger.info(err, `TaskListen:exec - error ${this.url}`);
}
if (this.transcribeTask) this.transcribeTask.kill();
if (this.transcribeTask) this.transcribeTask.kill(cs);
this._removeListeners(ep);
}