mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 19:57:51 +08:00
fix: conversation crash caused by non-existence (#2087)
* fix: GroupApplicationAcceptedNotification * fix: GroupApplicationAcceptedNotification * fix: NotificationUserInfoUpdate * cicd: robot automated Change * fix: component * fix: getConversationInfo --------- Co-authored-by: withchao <withchao@users.noreply.github.com>
This commit is contained in:
parent
4ed575a53c
commit
8f218057e4
@ -506,19 +506,27 @@ func (c *conversationServer) getConversationInfo(
|
||||
switch chatLog.SessionType {
|
||||
case constant.SingleChatType:
|
||||
if chatLog.SendID == userID {
|
||||
msgInfo.FaceURL = sendMap[chatLog.RecvID].FaceURL
|
||||
msgInfo.SenderName = sendMap[chatLog.RecvID].Nickname
|
||||
if recv, ok := sendMap[chatLog.RecvID]; ok {
|
||||
msgInfo.FaceURL = recv.FaceURL
|
||||
msgInfo.SenderName = recv.Nickname
|
||||
}
|
||||
break
|
||||
}
|
||||
msgInfo.FaceURL = sendMap[chatLog.SendID].FaceURL
|
||||
msgInfo.SenderName = sendMap[chatLog.SendID].Nickname
|
||||
if send, ok := sendMap[chatLog.SendID]; ok {
|
||||
msgInfo.FaceURL = send.FaceURL
|
||||
msgInfo.SenderName = send.Nickname
|
||||
}
|
||||
case constant.GroupChatType, constant.SuperGroupChatType:
|
||||
msgInfo.GroupName = groupMap[chatLog.GroupID].GroupName
|
||||
msgInfo.GroupFaceURL = groupMap[chatLog.GroupID].FaceURL
|
||||
msgInfo.GroupMemberCount = groupMap[chatLog.GroupID].MemberCount
|
||||
msgInfo.GroupID = chatLog.GroupID
|
||||
msgInfo.GroupType = groupMap[chatLog.GroupID].GroupType
|
||||
msgInfo.SenderName = sendMap[chatLog.SendID].Nickname
|
||||
if group, ok := groupMap[chatLog.GroupID]; ok {
|
||||
msgInfo.GroupName = group.GroupName
|
||||
msgInfo.GroupFaceURL = group.FaceURL
|
||||
msgInfo.GroupMemberCount = group.MemberCount
|
||||
msgInfo.GroupType = group.GroupType
|
||||
}
|
||||
if send, ok := sendMap[chatLog.SendID]; ok {
|
||||
msgInfo.SenderName = send.Nickname
|
||||
}
|
||||
}
|
||||
pbchatLog.ConversationID = conversationID
|
||||
msgInfo.LatestMsgRecvTime = chatLog.SendTime
|
||||
|
@ -99,13 +99,14 @@ func main() {
|
||||
}
|
||||
|
||||
checks := []checkFunc{
|
||||
//{name: "Mysql", function: checkMysql},
|
||||
{name: "Mongo", function: checkMongo, config: conf},
|
||||
{name: "Redis", function: checkRedis, config: conf},
|
||||
{name: "Minio", function: checkMinio, config: conf},
|
||||
{name: "Zookeeper", function: checkZookeeper, config: conf},
|
||||
{name: "Kafka", function: checkKafka, config: conf},
|
||||
}
|
||||
if conf.Object.Enable == "minio" {
|
||||
checks = append(checks, checkFunc{name: "Minio", function: checkMinio, config: conf})
|
||||
}
|
||||
|
||||
for i := 0; i < maxRetry; i++ {
|
||||
if i != 0 {
|
||||
|
Loading…
x
Reference in New Issue
Block a user