Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
ddboline committed Mar 25, 2024
1 parent f179b35 commit 640203c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion templates/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ function get_transcode_status() {
document.getElementById("main_article").innerHTML = xmlhttp.responseText;
update_file_list();
update_procs();
sleep(10_000).then(() => get_transcode_status());
sleep(10_000).then(() => {
update_file_list();
update_procs();
});
}
xmlhttp.open("GET", '/list/transcode/status', true);
xmlhttp.send(null);
Expand Down

0 comments on commit 640203c

Please sign in to comment.