From 4f264d860a5a6a32e1862ce26178b9cf6402335d Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Sat, 13 Jan 2024 01:00:08 +0000 Subject: [PATCH] splash/update: skip host delta --- src/splash/index.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/splash/index.js b/src/splash/index.js index 298d00a..41b2048 100644 --- a/src/splash/index.js +++ b/src/splash/index.js @@ -119,7 +119,7 @@ const initNew = async (inst) => { toSend = -1; const retryOptions = { - skip_host_delta: false, + skip_host_delta: true, skip_module_delta: {}, skip_all_module_delta: false, skip_windows_arch_update: false, @@ -149,9 +149,7 @@ const initNew = async (inst) => { if (install == null) return; simpleRecord(installs, install); - if (task.HostInstall != null) { - retryOptions.skip_host_delta = true; - } else if (task.ModuleInstall != null) { + if (task.ModuleInstall != null) { retryOptions.skip_module_delta[install.version.module.name] = true; } });