2 Commits dd433fd79c ... 640289a3e9

Author SHA1 Message Date
  余尚辉 640289a3e9 Merge branch 'dev_transfer_20241123' of ssh://gitlab.fuxicarbon.com:1111/client_service/voice-gateway-service into dev_transfer_20241123 17 hours ago
  余尚辉 245023b5da fix: bug 17 hours ago
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/voip/bot.py

+ 1 - 1
src/core/voip/bot.py

@@ -360,7 +360,7 @@ class MyCall(pj.Call):
 
 class ToTextBotAgent:
     def __init__(self, user_asr_text, call_agent):
-        if not user_asr_text or call_agent.action.get("action_code") != "normal":
+        if not user_asr_text or (call_agent.action and call_agent.action.get("action_code") != "normal"):
             print("ASR文本为空,终止执行。")
             return
         self.call_agent = call_agent