increase ui init timeout

Signed-off-by: Vladimir Mandic <mandic00@live.com>
This commit is contained in:
Vladimir Mandic
2025-11-04 20:22:57 -05:00
parent 65dfc9b4d0
commit fc92b64dcf
+1 -1
View File
@@ -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);
}