Fix bug where report manager was only being shown 'm.room.message'

This commit is contained in:
gnuxie
2024-04-06 20:03:36 +01:00
parent 5a991897dc
commit 91358af874
+1 -1
View File
@@ -212,8 +212,8 @@ export class Draupnir implements Client {
log.info(`Command being run by ${event.sender}: ${commandBeingRun}`);
Task(this.client.sendReadReceipt(roomID, event.event_id).then((_) => Ok(undefined)))
Task(handleCommand(roomID, event, commandBeingRun, this, this.commandTable).then((_) => Ok(undefined)));
this.reportManager.handleTimelineEvent(roomID, event);
}
this.reportManager.handleTimelineEvent(roomID, event);
}
/**