Skip to content

Commit 74467f9

Browse files
committed
fix: issue with cursors and blobs
1 parent 3d405e4 commit 74467f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

blob_util.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,9 +355,9 @@ export class BlobListIterator extends AsyncIterator implements
355355
super();
356356
this.#kv = kv;
357357
this.#valueKind = valueKind;
358-
const { limit, ...optionsRest } = options;
358+
const { limit, cursor, ...optionsRest } = options;
359359
this.#options = optionsRest;
360-
this.#iterator = kv.list<BlobMeta>(prefix, optionsRest);
360+
this.#iterator = kv.list<BlobMeta>(prefix, { cursor, ...optionsRest });
361361
this.#limit = limit;
362362
}
363363

0 commit comments

Comments
 (0)