fix: wrong increment value

This commit is contained in:
Julian Lam
2025-12-11 11:10:29 -05:00
committed by Barış Soner Uşaklı
parent 9f94a72117
commit b1fc5bfdaa

View File

@@ -15,11 +15,10 @@ module.exports = {
const combined = readKeys.concat(voteKeys); const combined = readKeys.concat(voteKeys);
await db.deleteAll(combined); await db.deleteAll(combined);
progress.incr(combined.length); progress.incr(uids.length);
}, { }, {
batch: 500, batch: 500,
progress, progress,
}); });
}, },
}; };