From 8406b4195cf169c3a5caf015860795d79f856b73 Mon Sep 17 00:00:00 2001 From: imeepos Date: Sun, 28 Sep 2025 21:16:47 +0800 Subject: [PATCH] fix: add status procesing --- src/pages/result/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/result/index.tsx b/src/pages/result/index.tsx index a0eef21..cd73961 100644 --- a/src/pages/result/index.tsx +++ b/src/pages/result/index.tsx @@ -34,7 +34,7 @@ const ResultPage: React.FC = () => { // 任务失败,停止轮询并设置错误 setError('任务执行失败'); return; - } else if (result.status === 'running' || result.status === 'pending' || result.status === 'pending_audit') { + } else if (result.status === 'running' || result.status === 'pending' || result.status === 'pending_audit' || result.status === 'processing') { // 任务仍在进行中,继续轮询 if (attempts < maxAttempts) { timerRef.current = setTimeout(poll, 1000);