From 74eca6b1f57d96f6ac2739f77a5453cb30ebbf4d Mon Sep 17 00:00:00 2001 From: Paul Bottein Date: Wed, 5 Jun 2024 10:13:28 +0200 Subject: [PATCH] Increase check update timeout to 15s (#20998) --- src/data/update.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/update.ts b/src/data/update.ts index 13c4b0d028..5423e4f477 100644 --- a/src/data/update.ts +++ b/src/data/update.ts @@ -144,7 +144,7 @@ export const checkForEntityUpdates = async ( // there is no reliable way to know if all the updates are done updating, so we just wait a bit for now... await new Promise((r) => { - setTimeout(r, 10000); + setTimeout(r, 15000); }); unsubscribeEvents();