fix: reverse conversation notification id.

This commit is contained in:
Gordon 2023-11-13 20:01:26 +08:00
parent a1aba2a628
commit 0a35b7ea5f

View File

@ -118,8 +118,9 @@ func GetNotificationConversationIDByConversationID(conversationID string) string
l := strings.Split(conversationID, "_")
if len(l) > 1 {
l[0] = "n"
return conversationID
return strings.Join(l, "_")
}
return ""
}