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