mirror of
https://github.com/xinnan-tech/xiaozhi-esp32-server.git
synced 2026-07-29 04:53:55 +08:00
fix:初始化ASR时,判断ASR类型取值错误修复
This commit is contained in:
@@ -496,7 +496,7 @@ class ConnectionHandler:
|
|||||||
|
|
||||||
def _initialize_asr(self):
|
def _initialize_asr(self):
|
||||||
"""初始化ASR"""
|
"""初始化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,可以被多个连接共享
|
# 因为本地一个实例ASR,可以被多个连接共享
|
||||||
asr = self._asr
|
asr = self._asr
|
||||||
|
|||||||
Reference in New Issue
Block a user