From 81d050d596ddd9b7da1878907d389d129188d143 Mon Sep 17 00:00:00 2001 From: josc146 Date: Mon, 29 May 2023 20:16:14 +0800 Subject: [PATCH] download dependencies when file size is zero --- frontend/src/utils/index.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/frontend/src/utils/index.tsx b/frontend/src/utils/index.tsx index fad5613..d29db72 100644 --- a/frontend/src/utils/index.tsx +++ b/frontend/src/utils/index.tsx @@ -1,8 +1,8 @@ import { AddToDownloadList, DeleteFile, - FileExists, ListDirFiles, + ReadFileInfo, ReadJson, SaveJson, UpdateApp @@ -175,9 +175,11 @@ export function isSystemLightMode() { export function downloadProgramFiles() { manifest.programFiles.forEach(({ url, path }) => { - FileExists(path).then(exists => { - if (!exists && url) + ReadFileInfo(path).then(info => { + if (info.size == 0 && url) AddToDownloadList(path, url.replace('@master', '@v' + manifest.version)); + }).catch(() => { + AddToDownloadList(path, url.replace('@master', '@v' + manifest.version)); }); }); }