feat(updater): support non zipped updater (#1174)

This commit is contained in:
Tony
2024-04-30 22:48:04 +08:00
committed by GitHub
parent f39586bcb4
commit 1fa4d30eab
6 changed files with 210 additions and 175 deletions
+2 -2
View File
@@ -12,8 +12,8 @@
isChecking = true;
try {
const update = await check();
onMessage(`Should update: ${update.response.available}`);
onMessage(update.response);
onMessage(`Should update: ${update.available}`);
onMessage(update);
newUpdate = update;
} catch (e) {