From fc92b64dcf372248d481469a950dc1fe0b6a8b3e Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Tue, 4 Nov 2025 20:22:57 -0500 Subject: [PATCH] increase ui init timeout Signed-off-by: Vladimir Mandic --- javascript/startup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/startup.js b/javascript/startup.js index 5e416daeb..f6d2ef392 100644 --- a/javascript/startup.js +++ b/javascript/startup.js @@ -27,7 +27,7 @@ async function initStartup() { // make sure all of the ui is ready and options are loaded let t1 = performance.now(); - while ((Object.keys(window.opts).length === 0) && (t1 - t0 < 10000)) { + while ((Object.keys(window.opts).length === 0) && (t1 - t0 < 60000)) { t1 = performance.now(); await sleep(50); }