async function IsLivestreamReady() { let resp = await fetch("/api/is_livestream_ready"); return await resp.json() } while (!await IsLivestreamReady()) { await new Promise(r => setTimeout(r, 500)); } location.reload();