From 91358af8745a1d775d294144fda3dec16abfccda Mon Sep 17 00:00:00 2001 From: gnuxie Date: Sun, 18 Feb 2024 20:23:29 +0000 Subject: [PATCH] Fix bug where report manager was only being shown 'm.room.message' --- src/Draupnir.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Draupnir.ts b/src/Draupnir.ts index 94e23997..10142e49 100644 --- a/src/Draupnir.ts +++ b/src/Draupnir.ts @@ -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); } /**