发送红包接口有问题,添加群恢复

This commit is contained in:
bobobobo
2026-01-08 01:44:39 +08:00
parent 1634425c17
commit c0619ea4ec
20 changed files with 2070 additions and 1531 deletions

View File

@@ -288,14 +288,15 @@
if (!conversation) {
return
}
// return when currentConversationID.value is the same as conversation.conversationID.
if (currentConversationID.value === conversation?.conversationID) {
return
}
isGroup.value = false
let conversationType = TUIChatEngine.TYPES.CONV_C2C
const conversationID = conversation.conversationID
if (conversationID.startsWith(TUIChatEngine.TYPES.CONV_GROUP)) {
conversationType = TUIChatEngine.TYPES.CONV_GROUP
isGroup.value = true
@@ -304,7 +305,6 @@
''
)
}
headerExtensionList.value = []
isMultipleSelectMode.value = false
// Initialize chatType
@@ -350,6 +350,4 @@
}
</script>
<style scoped lang="scss" src="./style/index.scss">
</style>
<style scoped lang="scss" src="./style/index.scss"></style>