fix:初始化ASR时,判断ASR类型取值错误修复

This commit is contained in:
shiyin
2025-12-12 18:28:46 +08:00
parent 41887ef431
commit 85e65cf9e8
+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