Commit 9a79ae97 by 罗长华

修复自动创建会话没有昵称的bug

parent 568ce350
......@@ -818,7 +818,7 @@ public class ImMessageServiceImpl extends BaseServiceImpl<ImMessageMapper, ImMes
members.add(receiver);
// 创建会话
ServerImConversationCreate conversationCreate = new ServerImConversationCreate();
conversationCreate.setName(null);
conversationCreate.setName(sender.getNickname());
conversationCreate.setAttributes(null);
conversationCreate.setCreator(sender);
conversationCreate.setMembers(members);
......
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