EventIndex: More lint fixes.

pull/21833/head
Damir Jelić 2020-03-12 12:20:46 +01:00
parent c02e839e9d
commit 25568fa15c
1 changed files with 1 additions and 1 deletions

View File

@ -492,7 +492,7 @@ export default class EventIndex extends EventEmitter {
); );
try { try {
for (var i = 0; i < redactionEvents.length; i++) { for (let i = 0; i < redactionEvents.length; i++) {
const ev = redactionEvents[i]; const ev = redactionEvents[i];
await indexManager.deleteEvent(ev.getAssociatedId()); await indexManager.deleteEvent(ev.getAssociatedId());
} }