삭제된 파일의 캐시가 존재하는 경우 캐시 페이지의 로딩이 끝나지 않는 버그 수정

This commit is contained in:
static
2026-01-01 21:41:53 +09:00
parent 182ec18a2b
commit 841c57e8fc
16 changed files with 98 additions and 59 deletions

View File

@@ -23,7 +23,9 @@
{#await filesPromise then files}
<div class="space-y-2 pb-4">
{#each files as file, index}
<File state={downloadingFiles[index]!} info={file} />
{#if file.exists}
<File state={downloadingFiles[index]!} info={file} />
{/if}
{/each}
</div>
{/await}