Commit 3fd3867e by weiss

1

1 parent 3caf3402
...@@ -354,6 +354,9 @@ public class FeiShuEventController { ...@@ -354,6 +354,9 @@ public class FeiShuEventController {
content.put("text", msg); content.put("text", msg);
feiShuMsgDTO.setMsgType("text"); feiShuMsgDTO.setMsgType("text");
feiShuMsgDTO.setContent(content.toString()); feiShuMsgDTO.setContent(content.toString());
if(receiveId.equals("-1")){
receiveId = (String) CacheUtil.get("chatId");
}
feiShuMsgDTO.setReceiveId(receiveId); feiShuMsgDTO.setReceiveId(receiveId);
feiShuApiService.sendMsg(feiShuMsgDTO, receiveIdType); feiShuApiService.sendMsg(feiShuMsgDTO, receiveIdType);
return ResultGenerator.genSuccessResult(); return ResultGenerator.genSuccessResult();
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!