feat(server): 使用主动退出指令时显示到设备上

This commit is contained in:
Jad
2025-03-30 13:03:01 +08:00
parent 1f3654cc01
commit d02c56a0e0
@@ -37,6 +37,7 @@ async def check_direct_exit(conn, text):
for cmd in cmd_exit:
if text == cmd:
logger.bind(tag=TAG).info(f"识别到明确的退出命令: {text}")
await send_stt_message(conn, text)
await conn.close()
return True
return False