From 41b7f587f0d4c983db29f177ac6205e6029c1d4a Mon Sep 17 00:00:00 2001 From: ashley Date: Sun, 31 Aug 2025 19:46:37 +0200 Subject: [PATCH] add error reasons :3c --- html/layouts/error-video.ejs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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...";