From e8cf773aacd046bb8f45507ffcf505b547cebf9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Sat, 12 Sep 2026 02:19:48 +0800 Subject: [PATCH] =?UTF-8?q?=E7=BB=9F=E4=B8=80=E8=87=AA=E5=8A=A8=E5=88=87?= =?UTF-8?q?=E5=88=86=E5=A4=B1=E8=B4=A5=E5=AE=8C=E6=88=90=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 分离入口异常时写入工作流完成失败通知 --- .../src/view/ui-editor/useUiEditorPage.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts b/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts index 6f262cabe..1b8ea4f52 100644 --- a/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts +++ b/apps/ai-game-creator-shell/src/view/ui-editor/useUiEditorPage.ts @@ -1261,8 +1261,11 @@ export function useUiEditorSession( } await runSeparationWorkflow(); } catch (cause) { - setSeparationStatus( + reportWorkflowCompletion( + 'asset-separation', + 'failure', cause instanceof Error ? cause.message : String(cause), + setSeparationStatus, ); } }