Commit 1a8cfb67 by hewei

Merge branch '1.4' into 'upay-test'

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

See merge request !28
parents 599924e8 816f1f4c
...@@ -798,7 +798,13 @@ public class ImConversationServiceImpl extends BaseServiceImpl<ImConversationMap ...@@ -798,7 +798,13 @@ public class ImConversationServiceImpl extends BaseServiceImpl<ImConversationMap
ImClient client = imClientService.getCurentClient(); 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 @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