mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 13:40:55 +00:00
enh: keep originalContent
This commit is contained in:
parent
9cd150a048
commit
6922529b78
@ -626,7 +626,11 @@
|
|||||||
if (res !== null) {
|
if (res !== null) {
|
||||||
// Update chat history with the new messages
|
// Update chat history with the new messages
|
||||||
for (const message of res.messages) {
|
for (const message of res.messages) {
|
||||||
history.messages[message.id] = { ...history.messages[message.id], ...message };
|
history.messages[message.id] = {
|
||||||
|
...history.messages[message.id],
|
||||||
|
originalContent: history.messages[message.id].content,
|
||||||
|
...message
|
||||||
|
};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user