From 1a80910f91064a49c8eb7ecba699fd603a35460a Mon Sep 17 00:00:00 2001 From: Hoan Luu Huu <110280845+xquanluu@users.noreply.github.com> Date: Thu, 18 Jan 2024 23:21:25 +0700 Subject: [PATCH] fix pause transcribe cannot close transcription on 2nd leg (#621) --- lib/tasks/transcribe.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tasks/transcribe.js b/lib/tasks/transcribe.js index 455b3010..5d4dfc53 100644 --- a/lib/tasks/transcribe.js +++ b/lib/tasks/transcribe.js @@ -95,7 +95,7 @@ class TaskTranscribe extends SttTask { } if (this.separateRecognitionPerChannel && this.ep2 && this.ep2.connected) { stopTranscription = true; - this.ep2.stopTranscription({vendor: this.vendor}) + this.ep2.stopTranscription({vendor: this.vendor, bugname: this.bugname}) .catch((err) => this.logger.info(err, 'Error TaskTranscribe:kill')); }