Skip to content

Commit 8ea9050

Browse files
committed
m
1 parent ac0c6d7 commit 8ea9050

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/storage/src/reference.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ export class Reference {
240240
const nextPage = await this.list(opt);
241241
accumulator.prefixes.push(...nextPage.prefixes);
242242
accumulator.items.push(...nextPage.items);
243-
if (nextPage.nextPageToken === undefined) {
243+
if (nextPage.nextPageToken !== undefined) {
244244
await this.listAllHelper(accumulator, nextPage.nextPageToken);
245245
}
246246
}

0 commit comments

Comments
 (0)