Browse Source

fix: 转接修改

余尚辉 4 months ago
parent
commit
015e81e117
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/callcenter/call.py

+ 1 - 1
src/core/callcenter/call.py

@@ -80,7 +80,7 @@ class CallService:
         context = MakeCallContext(display=call_info.called, caller=call_info.called, called=agent_number,
                                   call_id=call_id, device_id=device_id, device_type=device_info.device_type,
                                   call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
-        self.inbound_client.make_call_new(context)
+        self.client.make_call_new(context)
 
     def hangup(self, request: HangupCallRequest):
         call_info = Cache.get_call_info(request.call_id)