Merge branch 'v2.3.0release' of github.com:OpenIMSDK/Open-IM-Server into v2.3.0release

This commit is contained in:
wangchuxiao 2022-07-06 16:12:33 +08:00
commit 278329b73c
2 changed files with 13 additions and 4 deletions

View File

@ -183,7 +183,16 @@ func groupNotification(contentType int32, m proto.Message, sendID, groupID, recv
n.SendID = sendID
if groupID != "" {
n.RecvID = groupID
group, err := imdb.GetGroupInfoByGroupID(groupID)
if err != nil {
log.NewError(operationID, "GetGroupInfoByGroupID failed ", err.Error(), groupID)
}
switch group.GroupType {
case constant.NormalGroup:
n.SessionType = constant.GroupChatType
default:
n.SessionType = constant.SuperGroupChatType
}
} else {
n.RecvID = recvUserID
n.SessionType = constant.SingleChatType

View File

@ -163,7 +163,7 @@ const (
//GroupType
NormalGroup = 0
SuperGroup = 1
DepartmentGroup = 2
WorkingGroup = 2
GroupBaned = 3
GroupBanPrivateChat = 4