This commit is contained in:
glax 2023-09-20 14:16:47 +02:00
parent 93bd7afa3f
commit 8983a8d5ea

View File

@ -1,4 +1,5 @@
let runningJobs = []; let monitoringJobsCount = 0;
let runningJobs = [];
let waitingJobs = []; let waitingJobs = [];
let notificationConnectorTypes = []; let notificationConnectorTypes = [];
let libraryConnectorTypes = []; let libraryConnectorTypes = [];
@ -356,6 +357,7 @@ function utf8_to_b64(str) {
function UpdateJobs(){ function UpdateJobs(){
GetMonitorJobs().then((json) => { GetMonitorJobs().then((json) => {
if(monitoringJobsCount != json.length){
ResetContent(); ResetContent();
//console.log(json); //console.log(json);
json.forEach(job => { json.forEach(job => {
@ -365,6 +367,8 @@ function UpdateJobs(){
}); });
tasksContent.appendChild(mangaView); tasksContent.appendChild(mangaView);
}); });
monitoringJobsCount = json.length;
}
}); });
GetWaitingJobs().then((json) => { GetWaitingJobs().then((json) => {