download dependencies when file size is zero

This commit is contained in:
josc146 2023-05-29 20:16:14 +08:00
parent 5e698a8312
commit 81d050d596

View File

@ -1,8 +1,8 @@
import {
AddToDownloadList,
DeleteFile,
FileExists,
ListDirFiles,
ReadFileInfo,
ReadJson,
SaveJson,
UpdateApp
@ -175,8 +175,10 @@ 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));
});
});