diff --git a/aiChat/mixins/chatMixinsV2.js b/aiChat/mixins/chatMixinsV2.js index 13443d1..020d3f4 100644 --- a/aiChat/mixins/chatMixinsV2.js +++ b/aiChat/mixins/chatMixinsV2.js @@ -680,7 +680,7 @@ export const chatMixinsV2 = { // this.audioContext.destroy() } // 如果正在播放,点击当前播放的则认为是暂停 - if (this.isPlayAudio && item.conversationId === this.audioPlayId) { + if (this.isPlayAudio && [item.conversationId, item.messageId, item.parentMessageId].includes(this.audioPlayId)) { this.isPlayAudio = false this.audioPlayId = '' return diff --git a/aiChat/views/history.vue b/aiChat/views/history.vue index e876d12..a919f54 100644 --- a/aiChat/views/history.vue +++ b/aiChat/views/history.vue @@ -109,7 +109,7 @@