diff --git a/html/layouts/error-video.ejs b/html/layouts/error-video.ejs index 66776f90..653e7566 100644 --- a/html/layouts/error-video.ejs +++ b/html/layouts/error-video.ejs @@ -93,12 +93,12 @@ reloadCount++; localStorage.setItem('reloadCount', reloadCount); - let seconds = reloadCount > 8 ? 30 : 10; + let seconds = reloadCount > 90 ? 30 : 5; function updateCountdown() { const el = document.getElementById('countdown'); if (el) { - if (reloadCount > 8) { + if (reloadCount > 90) { document.querySelector('.error p').textContent = "This is taking so long..."; } el.textContent = "Trying again in " + seconds + " seconds...";