Merge b0befa9a95b0b95f04a794a99630d5a4299dce9c into 277da378eacbbcad9981ebad6843980dbba2b1d9

This commit is contained in:
Monet Lee 2025-10-10 11:42:47 +09:00 committed by GitHub
commit 787a708fd1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 ""
}