1
0
Fork 0

fix wrong "users left" count due to skipped

This commit is contained in:
lightling 2024-03-03 13:06:16 -05:00
parent fc3b6800c8
commit e806dc23ae

View file

@ -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;
}
}