Skip to content

Commit 4f264d8

Browse files
committed
splash/update: skip host delta
1 parent 84b3df4 commit 4f264d8

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/splash/index.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ const initNew = async (inst) => {
119119
toSend = -1;
120120

121121
const retryOptions = {
122-
skip_host_delta: false,
122+
skip_host_delta: true,
123123
skip_module_delta: {},
124124
skip_all_module_delta: false,
125125
skip_windows_arch_update: false,
@@ -149,9 +149,7 @@ const initNew = async (inst) => {
149149
if (install == null) return;
150150
simpleRecord(installs, install);
151151

152-
if (task.HostInstall != null) {
153-
retryOptions.skip_host_delta = true;
154-
} else if (task.ModuleInstall != null) {
152+
if (task.ModuleInstall != null) {
155153
retryOptions.skip_module_delta[install.version.module.name] = true;
156154
}
157155
});

0 commit comments

Comments
 (0)