DavidLiu 3 月之前
父節點
當前提交
e8dc37db31
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      src/core/callcenter/esl/handler/channel_hangup_handler.py

+ 6 - 0
src/core/callcenter/esl/handler/channel_hangup_handler.py

@@ -34,11 +34,17 @@ class ChannelHangupHandler(EslEventHandler):
         # self.logger.info(json.loads(event.serialize('json')))
         # self.logger.info(json.loads(event.serialize('json')))
         try:
         try:
             call_id = EslEventUtil.getCallId(event)
             call_id = EslEventUtil.getCallId(event)
+            self.logger.info('call_id is %s', call_id)
+            if not call_id:
+                other_leg_device_id = event.getHeader("variable_bridge_uuid")
+                call_id = self.cache.get_call_id_by_device_id(other_leg_device_id)
+
             self.logger.info('call_id is %s', call_id)
             self.logger.info('call_id is %s', call_id)
             if not call_id:
             if not call_id:
                 self.release(event)
                 self.release(event)
                 self.logger.info("call_id is null, event=%s", json.loads(event.serialize('json')))
                 self.logger.info("call_id is null, event=%s", json.loads(event.serialize('json')))
                 return
                 return
+
             call_info = self.cache.get_call_info(call_id)
             call_info = self.cache.get_call_info(call_id)
             self.logger.info('call_info is %s', call_info)
             self.logger.info('call_info is %s', call_info)
             if not call_info:
             if not call_info: