stream-slice: fix off-by-1

This commit is contained in:
Starbeamrainbowlabs 2020-07-02 17:25:53 +01:00
parent 6cd4b78fb1
commit 4887e5288d
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 5 additions and 2 deletions

View File

@ -38,12 +38,15 @@ export default async function(settings) {
if(i < offset) continue;
let is_last = i - offset >= count;
// Write it to the output
let is_last = i - offset >= count - 1;
await next.serialise(stream_out, is_last);
// Don't go further than we need to
if(is_last) break;
l.log(`Written ${i - offset} / count objects (~${percentage(i - offset, count).toFixed(2)}%) \r`);
// Update the user
l.log(`Written ${i - offset} / count objects (~${percentage(i - offset, count).toFixed(2)}%)`);
}
l.log(`Slicing complete`);