Delint once more

pull/21833/head
Jaiwanth 2021-07-19 13:28:09 +05:30
parent 6d0fd0322e
commit c0d2dbe7fd
1 changed files with 6 additions and 1 deletions

View File

@ -158,7 +158,12 @@ export default abstract class Exporter {
while (limit) {
const eventsPerCrawl = Math.min(limit, 1000);
const res: any = await this.client.createMessagesRequest(this.room.roomId, prevToken, eventsPerCrawl, Direction.Backward);
const res = await this.client.createMessagesRequest(
this.room.roomId,
prevToken,
eventsPerCrawl,
Direction.Backward,
);
if (this.cancelled) {
this.cleanUp();