diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index 22276ca10..011afca87 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -390,6 +390,9 @@ if (autoScroll) { scrollToBottom('smooth'); } + } else if (type === 'chat:message:favorite') { + // Update message favorite status + message.favorite = data.favorite; } else if (type === 'chat:title') { chatTitle.set(data); currentChatPage.set(1);