Also allow undefined, which means at the end of the paginated direction
we already detect the end by chunk.length===0, so we just need to not throw
This commit is contained in:
parent
623939c671
commit
84bac0afe9
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ export class GapWriter {
|
|||
if (!Array.isArray(chunk)) {
|
||||
throw new Error("Invalid chunk in response");
|
||||
}
|
||||
if (typeof end !== "string") {
|
||||
if (typeof end !== "string" && typeof end !== "undefined") {
|
||||
throw new Error("Invalid end token in response");
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue