From 5f15c2e3cd388efbe2f08d733ac0940a720817ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hampus=20Sj=C3=B6berg?= Date: Wed, 24 Jan 2024 19:02:48 +0100 Subject: [PATCH] Run speedloader on initial app start Previously, we would only run on subsequent app starts, due to user experience issue being bad if the user has too wait too long the first time they try to use Blixt. --- src/state/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/index.ts b/src/state/index.ts index e15f24d7b..24da28c03 100644 --- a/src/state/index.ts +++ b/src/state/index.ts @@ -325,7 +325,7 @@ export const model: IStoreModel = { const speed = setTimeout(() => { actions.setSpeedloaderLoading(true); }, 3000); - if (gossipSyncEnabled && !firstStartup && Chain === "mainnet") { + if (gossipSyncEnabled && Chain === "mainnet") { if (enforceSpeedloaderOnStartup) { log.d("Clearing speedloader files"); try {