mirror of
https://github.com/open-webui/open-webui
synced 2024-11-16 13:40:55 +00:00
fix: unfinished chat load error
This commit is contained in:
parent
edac6f4dbd
commit
ce4973becb
@ -236,6 +236,9 @@
|
|||||||
const loadChat = async (id) => {
|
const loadChat = async (id) => {
|
||||||
const chat = await db.get('chats', id);
|
const chat = await db.get('chats', id);
|
||||||
if (chatId !== chat.id) {
|
if (chatId !== chat.id) {
|
||||||
|
if (chat.messages.length > 0) {
|
||||||
|
chat.messages.at(-1).done = true;
|
||||||
|
}
|
||||||
messages = chat.messages;
|
messages = chat.messages;
|
||||||
title = chat.title;
|
title = chat.title;
|
||||||
chatId = chat.id;
|
chatId = chat.id;
|
||||||
|
Loading…
Reference in New Issue
Block a user