From c226e55fcc56752ee12a74ab644d37d1820ffc56 Mon Sep 17 00:00:00 2001 From: Hoan HL Date: Thu, 27 Nov 2025 15:59:47 +0700 Subject: [PATCH] wip --- 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 a25c7266..a1d63b3a 100644 --- a/lib/tasks/transcribe.js +++ b/lib/tasks/transcribe.js @@ -907,7 +907,7 @@ class TaskTranscribe extends SttTask { canFallback(ep) { const isHandledByPrimaryProvider = ep === this.ep ? this.isHandledByPrimaryProviderForEp1 : ep === this.ep2 ? - this.isHandledByPrimaryProviderForEp2 : false; + this.isHandledByPrimaryProviderForEp2 : this.isHandledByPrimaryProvider; return this.fallbackVendor && isHandledByPrimaryProvider && !this.cs.hasFallbackAsr; }