diff --git a/lib/dl.js b/lib/dl.js index 240da9e..c0bae4b 100644 --- a/lib/dl.js +++ b/lib/dl.js @@ -67,9 +67,11 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso if (mode === 'search') { if (userDb[currentIndex].shouldSkipSearch) { log(ctx, `Skipping ${userDb[currentIndex].user} because /media ended with a skipped file`); + userDb[currentIndex].running = `finished ${mode}`; continue; } else if (!!userDb[currentIndex].lastError) { log(ctx, `Skipping ${userDb[currentIndex].user} because of error: ${userDb[currentIndex].lastError}`); + userDb[currentIndex].running = `finished ${mode}`; continue; } }