mirror of
https://git.waldn.net/git/knotteye/satyr.git
synced 2025-09-07 15:52:44 +00:00
Check if the video object still exists before restarting the timeout
This commit is contained in:
@ -102,12 +102,15 @@ async function render(path, s){
|
||||
//root
|
||||
case "/":
|
||||
render('/users/live');
|
||||
modifyLinks();
|
||||
break;
|
||||
case "":
|
||||
render('/users/live');
|
||||
modifyLinks();
|
||||
break;
|
||||
case "/index.html":
|
||||
render('/users/live');
|
||||
modifyLinks();
|
||||
break;
|
||||
//404
|
||||
default:
|
||||
@ -215,7 +218,8 @@ async function initPlayer(usr) {
|
||||
onError(e);
|
||||
}
|
||||
} else {
|
||||
setTimeout(initPlayer, 5000, usr);
|
||||
if(document.getElementById('video') !== null)
|
||||
setTimeout(initPlayer, 5000, usr);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user