mirror of
https://github.com/open-webui/open-webui
synced 2024-11-06 08:56:39 +00:00
only cancel chat completion if the deleted message is the most recently sent
This commit is contained in:
parent
95b8edf6b3
commit
a655ccdd06
@ -227,9 +227,13 @@
|
|||||||
history.messages[messageId].deleted = true;
|
history.messages[messageId].deleted = true;
|
||||||
history.messages[history.messages[messageId].childrenIds[0]].deleted = true;
|
history.messages[history.messages[messageId].childrenIds[0]].deleted = true;
|
||||||
|
|
||||||
|
const responseId = history.messages[messageId].childrenIds[0];
|
||||||
|
if (history.messages[responseId].childrenIds.length === 0) {
|
||||||
|
await cancelChatCompletion(localStorage.token, chatId);
|
||||||
|
}
|
||||||
|
|
||||||
await updateChatById(localStorage.token, chatId, { history });
|
await updateChatById(localStorage.token, chatId, { history });
|
||||||
await chats.set(await getChatList(localStorage.token));
|
await chats.set(await getChatList(localStorage.token));
|
||||||
await cancelChatCompletion(localStorage.token, chatId);
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user