10 lines
231 B
JavaScript
10 lines
231 B
JavaScript
|
async function IsLivestreamReady() {
|
||
|
let resp = await fetch("/api/is_livestream_ready");
|
||
|
return await resp.json()
|
||
|
}
|
||
|
|
||
|
while (!await IsLivestreamReady()) {
|
||
|
await new Promise(r => setTimeout(r, 100));
|
||
|
}
|
||
|
|
||
|
location.reload();
|