From 3640591c46ee15c6d02874d2f1c4915658e6dc58 Mon Sep 17 00:00:00 2001 From: umsangdon Date: Sat, 29 Aug 2026 19:52:18 +0900 Subject: [PATCH] fix(B03): skip polling for unchanged uploads --- B03_FileInput/B03_FileInput_UI_Page.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/B03_FileInput/B03_FileInput_UI_Page.ts b/B03_FileInput/B03_FileInput_UI_Page.ts index b7ee750c..be036522 100644 --- a/B03_FileInput/B03_FileInput_UI_Page.ts +++ b/B03_FileInput/B03_FileInput_UI_Page.ts @@ -566,6 +566,12 @@ export async function renderB03FileInput(root: HTMLElement): Promise { renderUploadResults(resultList, uploaded); showToast(L("B03_File_Upload_Success"), "success"); + // 모든 파일이 기존 파일과 같으면 새 분석이 시작되지 않는다. + if (uploaded.length === 0) { + navigateTo(completionRoute); + return; + } + showToast(L("B03_File_Analysis_InProgress"), "info"); const analysisComplete = await pollAnalysis(activeProjectId);