Merge pull request #766 from vector-im/bwindels/fix-765

Also allow undefined, which means at the end of the paginated direction
This commit is contained in:
Bruno Windels 2022-06-25 17:40:26 +00:00 committed by GitHub
commit 3bc453d5ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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");
}