Explorar el Código

增加本地缓存机制

DavidLiu hace 3 meses
padre
commit
27cbdb8b0a
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/core/callcenter/cache.py

+ 2 - 0
src/core/callcenter/cache.py

@@ -93,6 +93,8 @@ class Cache:
 
     # 获取callInfo
     def get_call_info(self, call_id):
+        if not call_id:
+            return None
         call_info = self.cacheman['call'].get(call_id)
         if call_info:
             return call_info