Commit 6922529b authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

enh: keep originalContent

parent 9cd150a0
......@@ -626,7 +626,11 @@
if (res !== null) {
// Update chat history with the new 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
};
}
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment