Commit 062ee97e by Future

临时会话,数量限制

parent f27e5fe4
......@@ -127,7 +127,7 @@ public class NormalChatAction {
Map<Long, ImConversationMembers> memberMap = membersList.stream().collect(Collectors.toMap(ImConversationMembers::getFkClientId, member -> member));
// 判断为单聊
if (ChatTypeEnum.SINGLE.getCode().equals(conversation.getChatType())) {
if (ChatTypeEnum.SINGLE.getCode().equals(conversation.getChatType()) || ChatTypeEnum.TEMP.getCode().equals(conversation.getChatType())) {
// 判断是否被拉黑逻辑
if (black(reqId, imClientSender, membersList, request.getSenderChannel())) {
return;
......
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