View Single Post
  #2111  
Old 18.02.2022, 12:32
namyar namyar is offline
JD Beta
 
Join Date: Apr 2016
Posts: 51
Talking

Quote:
Originally Posted by mgpai View Post
Code:
/*
    Resume links
    Trigger : Interval (Recmmended 600000+)
*/

var start = isDownloadControllerRunning();

getAllDownloadLinks().forEach(function(link) {
    link.skippedReason == "DISK_FULL" && (link.skipped = false);
    !start && (start = true);
})

start && !isDownloadControllerRunning() && startDownloads();
Thank you!
Reply With Quote