[Updater > Module] Minor source cleanup

This commit is contained in:
Ducko 2022-03-19 12:31:39 +00:00
parent 9b1350fe59
commit 399727845b
1 changed files with 28 additions and 29 deletions

View File

@ -298,7 +298,9 @@ const installModule = (name, ver, path) => {
finishInstall(name, ver, success);
};
const processZipfile = (e, zip) => {
try {
yauzl.open(path, {}, (e, zip) => {
if (e) return handleErr(e);
const total = zip.entryCount;
@ -325,10 +327,7 @@ const installModule = (name, ver, path) => {
finishInstall(name, ver, success);
});
};
try {
yauzl.open(path, {}, processZipfile);
});
} catch (e) {
onError(e);
}