diff options
| -rw-r--r-- | frontend/index.html | 3 | ||||
| -rw-r--r-- | frontend/start.js | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/frontend/index.html b/frontend/index.html index fcb0c2f..8dee2d1 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -38,7 +38,8 @@ <script> (async () => { const timers = await fetchTimers(); - if (timers.length > 0) { + alert(timers[1]); + if (Array.isArray(timers[1]) && timers[1].length > 0) { window.location.href = './timer/'; } else { window.location.href = './status/'; diff --git a/frontend/start.js b/frontend/start.js index c36dc40..50a3485 100644 --- a/frontend/start.js +++ b/frontend/start.js @@ -38,7 +38,7 @@ async function requestPermission() { const existingPanel = document.getElementById("existing-laundry-panel"); const existingText = document.getElementById("existing-laundry-text"); - if (timers[1].length > 0) { + if (Array.isArray(timers[1]) && timers[1].length > 0) { existingPanel.style.display = 'inherit'; if (timers.length == 1) { existingText.innerText = "You currently have another ongoing laundry. You are creating a new timer."; |
