fix wrong "users left" count due to skipped
This commit is contained in:
parent
fc3b6800c8
commit
e806dc23ae
1 changed files with 2 additions and 0 deletions
|
@ -67,9 +67,11 @@ export const getMany = (userDb, threadMax, directory, mode) => new Promise((reso
|
||||||
if (mode === 'search') {
|
if (mode === 'search') {
|
||||||
if (userDb[currentIndex].shouldSkipSearch) {
|
if (userDb[currentIndex].shouldSkipSearch) {
|
||||||
log(ctx, `Skipping ${userDb[currentIndex].user} because /media ended with a skipped file`);
|
log(ctx, `Skipping ${userDb[currentIndex].user} because /media ended with a skipped file`);
|
||||||
|
userDb[currentIndex].running = `finished ${mode}`;
|
||||||
continue;
|
continue;
|
||||||
} else if (!!userDb[currentIndex].lastError) {
|
} else if (!!userDb[currentIndex].lastError) {
|
||||||
log(ctx, `Skipping ${userDb[currentIndex].user} because of error: ${userDb[currentIndex].lastError}`);
|
log(ctx, `Skipping ${userDb[currentIndex].user} because of error: ${userDb[currentIndex].lastError}`);
|
||||||
|
userDb[currentIndex].running = `finished ${mode}`;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue