Skip to content

Commit e849112

Browse files
committed
Bump iFrame reload time to 10s
1 parent 3e4fefe commit e849112

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/capture.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,14 +408,14 @@ export async function captureEdgesharkVNC(
408408
// Initial delay to ensure VNC server is ready
409409
setTimeout(loadVNC, 500);
410410
411-
// Force a reload if the iframe doesn't load within 3 seconds
411+
// Force a reload if the iframe doesn't load within 10 seconds
412412
setTimeout(() => {
413413
if (iframe.style.display === 'none') {
414414
iframe.src = url;
415415
loading.style.display = 'none';
416416
iframe.style.display = 'block';
417417
}
418-
}, 3000);
418+
}, 10000);
419419
</script>
420420
</body>
421421
</html>

0 commit comments

Comments
 (0)