From 8bb941b4fdcbb400f662ac50e97d858f993e930c Mon Sep 17 00:00:00 2001 From: Vladimir Mandic Date: Tue, 4 Nov 2025 20:24:42 -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 f6d2ef392..ac927e1e1 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 < 60000)) { + while ((Object.keys(window.opts).length === 0) && (t1 - t0 < 120000)) { t1 = performance.now(); await sleep(50); }