EventIndex: Fix some lint errors.
This commit is contained in:
parent
c397de18bd
commit
3c46a56391
3 changed files with 10 additions and 11 deletions
|
@ -431,8 +431,8 @@ export default class EventIndex {
|
|||
}
|
||||
|
||||
currentlyCrawledRooms() {
|
||||
let crawlingRooms = new Set();
|
||||
let totalRooms = new Set();
|
||||
const crawlingRooms = new Set();
|
||||
const totalRooms = new Set();
|
||||
|
||||
this.crawlerCheckpoints.forEach((checkpoint, index) => {
|
||||
crawlingRooms.add(checkpoint.roomId);
|
||||
|
@ -454,6 +454,6 @@ export default class EventIndex {
|
|||
totalRooms.add(room.roomId);
|
||||
});
|
||||
|
||||
return {crawlingRooms, totalRooms}
|
||||
return {crawlingRooms, totalRooms};
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue