Commit 00ed686e by 郑永强

fix bug

parent a3852fd1
......@@ -433,11 +433,11 @@ public class AdNewsBizImpl implements AdNewsBiz {
if (!StringUtil.isEmpty(startContent)) { temp = startContent.concat("\n\n").concat(temp); }
if (!StringUtil.isEmpty(endContent)) { temp = temp.concat("\n").concat(endContent); }
// 判断合并后的字数长度是否大于限制
// 合并后的字数长度小于限制则发送
if(temp.length() <= SEND_MESSAGE_LENGTH){
// 直接发送合并后的消息
sendAdNewsText(temp, robotId, weixinGroupId);
return;
continue;
}
}
......
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