blob: a392eb8bdbe6b162d74aab382cb0c3eb846a3f59 (
plain)
1
2
3
4
5
6
7
8
|
(async () => {
const timers = await fetchTimers();
if (Array.isArray(timers[1]) && timers[1].length > 0) {
window.location.href = './timer/';
} else {
window.location.href = './status/';
}
})();
|