lyhzzz 1 年之前
父节点
当前提交
ce7a789068
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/fdkankan/mqcontroller/service/impl/ScenePlusServiceImpl.java

+ 1 - 1
src/main/java/com/fdkankan/mqcontroller/service/impl/ScenePlusServiceImpl.java

@@ -39,7 +39,7 @@ public class ScenePlusServiceImpl extends ServiceImpl<IScenePlusMapper, ScenePlu
         JSONObject jsonObject = JSONObject.parseObject(mqSendLog.getContent());
         if(jsonObject.containsKey("ext")){
             JSONObject ext  = jsonObject.getJSONObject("ext");
-            if(ext.containsKey("128G") && ext.getInteger("128G") == 1){
+            if(ext != null && ext.containsKey("128G") && ext.getInteger("128G") == 1){
                 MqQueueConfig dfConfig = queueConfigService.getDfConfig128();
                 if(dfConfig != null){
                     return dfConfig.getId();