[Updater > Module] Minor source cleanup

This commit is contained in:
Ducko 2022-03-18 22:52:55 +00:00
parent 26f84c77c4
commit 02590ea3f7
1 changed files with 1 additions and 2 deletions

View File

@ -416,8 +416,7 @@ exports.install = (name, def, { version } = {}) => {
return commitManifest();
}
version = version ?? remote[name] ?? 0;
downloadModule(name, version);
downloadModule(name, version ?? remote[name] ?? 0);
};
exports.installPendingUpdates = () => {