Fix: Resolved the issue of incorrect generation of conversationID in 3.8.3-patch branch.

pull/3582/head
mo3et 2 months ago
parent ed1c22127e
commit b0743a3848

@ -109,7 +109,7 @@ func GetConversationIDBySessionType(sessionType int, ids ...string) string {
case constant.ReadGroupChatType:
return "sg_" + ids[0] // super group chat
case constant.NotificationChatType:
return "sn_" + ids[0] // server notification chat
return "sn_" + strings.Join(ids, "_") // server notification chat
}
return ""
}

Loading…
Cancel
Save