server : fix webui (#15462)

* Fix webui crash after streaming

* build webui
This commit is contained in:
stduhpf
2025-08-21 07:19:22 +02:00
committed by GitHub
parent 29f538ac63
commit 1b0db8f6e0
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -255,7 +255,7 @@ export const AppContextProvider = ({
if (chunk.error) {
throw new Error(chunk.error?.message || 'Unknown error');
}
const addedContent = chunk.choices[0].delta.content;
const addedContent = chunk.choices[0]?.delta.content;
const lastContent = pendingMsg.content || '';
if (addedContent) {
pendingMsg = {