Details optimization (#1293)

* Details optimization

* Optimize the control structure

* Optimize the control structure, Fix setting HTTP request setting URL parameter error
This commit is contained in:
醉墨居士
2023-11-05 18:36:01 +08:00
committed by GitHub
parent 450fe26cc0
commit a9e590109c
4 changed files with 17 additions and 15 deletions
+2 -3
View File
@@ -118,10 +118,9 @@ func GetNotificationConversationIDByConversationID(conversationID string) string
l := strings.Split(conversationID, "_")
if len(l) > 1 {
l[0] = "n"
return strings.Join(l, "_")
} else {
return ""
return conversationID
}
return ""
}
func GetNotificationConversationID(sessionType int, ids ...string) string {