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; }