EventIndex: Fix some lint errors.

This commit is contained in:
Damir Jelić 2019-11-26 15:06:04 +01:00
parent c397de18bd
commit 3c46a56391
3 changed files with 10 additions and 11 deletions

View file

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