fix missing live preview and progress during certain tasks

Sometimes tasks take longer than 5 seconds to start,
resulting in missing progress bar and livepreviews,
so we have to keep pulling for progress a bit longer (5s -> 20s).
This commit is contained in:
bbonvi 2023-03-31 19:29:34 +06:00
parent 22bcc7be42
commit c938b172a4

View File

@ -138,7 +138,7 @@ function requestProgress(id_task, progressbarContainer, gallery, atEnd, onProgre
return
}
if(elapsedFromStart > 5 && !res.queued && !res.active){
if(elapsedFromStart > 20 && !res.queued && !res.active){
removeProgressBar()
return
}