Commit 816f1f4c by hweeeeeei

修复:获取会话详情接口,MyConversationListVo中的attributes字段为空问题

parent 9ae291ec
......@@ -798,7 +798,13 @@ public class ImConversationServiceImpl extends BaseServiceImpl<ImConversationMap
ImClient client = imClientService.getCurentClient();
return this.getImConversationAndMsgCountById(client.getId(), id);
MyConversationListVo imConversationAndMsgCountById = this.getImConversationAndMsgCountById(client.getId(), id);
JsonMapper jsonMapper = new JsonMapper();
HashMap attributess = jsonMapper.readValue(imConversationAndMsgCountById.getAttribute(), HashMap.class);
imConversationAndMsgCountById.setAttributes(attributess);
return imConversationAndMsgCountById;
}
@Override
......
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