From a357e220d82230277a123d809e3130dc359f0fbb Mon Sep 17 00:00:00 2001 From: Wes Date: Tue, 9 Jun 2026 09:52:49 -0700 Subject: [PATCH] fix(updater): send no-cache header on update check to avoid stale manifest (#922) Signed-off-by: Wes Co-authored-by: Brain <21994759fc7a6fa6b965551d35cfd7897d262f2495467f2d78694ddcfa6a5c7e@sprout-oss.stage.blox.sqprod.co> --- desktop/src/features/settings/hooks/use-updater.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/desktop/src/features/settings/hooks/use-updater.ts b/desktop/src/features/settings/hooks/use-updater.ts index 4460ccf5e..21c7bd46f 100644 --- a/desktop/src/features/settings/hooks/use-updater.ts +++ b/desktop/src/features/settings/hooks/use-updater.ts @@ -122,7 +122,9 @@ export function useUpdater() { setStatus({ state: "checking" }); } - const update = await check(); + const update = await check({ + headers: { "Cache-Control": "no-cache" }, + }); const shouldShowQuietResult = !background || manualResultRequestedRef.current;