Update dependency typescript to v5 (#10532)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
renovate[bot] 2023-04-06 13:17:50 +01:00 committed by GitHub
parent 6c39aa29e2
commit 0ea2ff85d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 26 additions and 34 deletions

View file

@ -121,7 +121,7 @@ export class RelationsHelper extends TypedEventEmitter<RelationsHelperEvent, Eve
limit: 50,
},
);
nextBatch = response?.nextBatch;
nextBatch = response?.nextBatch ?? undefined;
response?.events.forEach((e) => this.emit(RelationsHelperEvent.Add, e));
} while (nextBatch);
}