Merge pull request #2694 from qingshuiyuyu/bugfix

fix:初始化ASR时,判断ASR类型取值错误修复
This commit is contained in:
hrz
2025-12-13 00:16:37 +08:00
committed by GitHub
+1 -1
View File
@@ -496,7 +496,7 @@ class ConnectionHandler:
def _initialize_asr(self):
"""初始化ASR"""
if self._asr.interface_type == InterfaceType.LOCAL:
if self._asr is not None and hasattr(self._asr, "interface_type") and self._asr.interface_type == InterfaceType.LOCAL:
# 如果公共ASR是本地服务,则直接返回
# 因为本地一个实例ASR,可以被多个连接共享
asr = self._asr