Commit 288a1ee4 by 杨涛

fix 空指针

parent bd496962
...@@ -365,12 +365,12 @@ public class WeixinClockBizImpl implements WeixinClockBiz { ...@@ -365,12 +365,12 @@ public class WeixinClockBizImpl implements WeixinClockBiz {
LOGGER.info("content----->"+content+"weixinGroupId----->"+weixinGroupId); LOGGER.info("content----->"+content+"weixinGroupId----->"+weixinGroupId);
//简单过滤非关键词的词 //简单过滤非关键词的词
if (StringUtil.isEmpty(content) || content.length() > 10) { if (StringUtil.isEmpty(content) || content.length() > 10) {
return null; return false;
} }
//通过群id获取对应基本信息 //通过群id获取对应基本信息
GroupClassifyQrcodeDTO classifyQrcodeInfo = bookGroupClassifyBiz.getClassifyQrcodeInfo(weixinGroupId); GroupClassifyQrcodeDTO classifyQrcodeInfo = bookGroupClassifyBiz.getClassifyQrcodeInfo(weixinGroupId);
if(null == classifyQrcodeInfo){ if(null == classifyQrcodeInfo){
return null; return false;
} }
Map<String,Object> paramMap = new HashMap<>(); Map<String,Object> paramMap = new HashMap<>();
paramMap.put("bookGroupClassifyId",classifyQrcodeInfo.getClassifyId()); paramMap.put("bookGroupClassifyId",classifyQrcodeInfo.getClassifyId());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment