From 533c99e38421bff5dc92fb786bf1ec8d3afd12a6 Mon Sep 17 00:00:00 2001 From: wangtunan Date: Thu, 6 Mar 2025 23:56:41 +0800 Subject: [PATCH 1/2] fix: stopTask func need use async/await syntax --- src/lib/components/chat/Chat.svelte | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index ca766c9f7..c48a204f9 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1683,9 +1683,10 @@ history.messages[responseMessage.id] = responseMessage; }; - const stopResponse = () => { + const stopResponse = async () => { if (taskId) { - const res = stopTask(localStorage.token, taskId).catch((error) => { + const res = await stopTask(localStorage.token, taskId).catch((error) => { + toast.error(error); return null; }); From 7d1a094f9b60dcaca8d918faee0d9204c399451a Mon Sep 17 00:00:00 2001 From: wangtunan Date: Fri, 7 Mar 2025 00:07:04 +0800 Subject: [PATCH 2/2] fix: stopTask func need use async/await syntax --- src/lib/components/chat/Chat.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/chat/Chat.svelte b/src/lib/components/chat/Chat.svelte index c48a204f9..7e0d0bd6d 100644 --- a/src/lib/components/chat/Chat.svelte +++ b/src/lib/components/chat/Chat.svelte @@ -1686,7 +1686,7 @@ const stopResponse = async () => { if (taskId) { const res = await stopTask(localStorage.token, taskId).catch((error) => { - toast.error(error); + toast.error(`${error}`); return null; });