Commit e15cf921 by Future

content为null处理

parent 5fdf4a0b
...@@ -941,7 +941,7 @@ public class ImConversationServiceImpl extends BaseServiceImpl<ImConversationMap ...@@ -941,7 +941,7 @@ public class ImConversationServiceImpl extends BaseServiceImpl<ImConversationMap
for (ImClient receiver : clientReceivers) { for (ImClient receiver : clientReceivers) {
// 投递消息 // 投递消息
try { try {
couriers.deliver(imMessage, null, currentClient, receiver, WsResponseCmdEnum.CONVERSATION_EVENT_MSG); couriers.deliver(imMessage, contentMap, currentClient, receiver, WsResponseCmdEnum.CONVERSATION_EVENT_MSG);
} catch (Exception e) { } catch (Exception e) {
log.info("下发群会话事件失败,事件类型 {} 接收人 {}", imMessage.getMsgType(), JSON.toJSONString(receiver)); log.info("下发群会话事件失败,事件类型 {} 接收人 {}", imMessage.getMsgType(), JSON.toJSONString(receiver));
} }
......
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