From 9c982d66e98d00b4b87c5b6844089b2b31ce569e Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sun, 19 Mar 2023 15:03:50 -0600 Subject: [PATCH] always mark message as seen --- matrix_gpt/bot/bot_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_gpt/bot/bot_commands.py b/matrix_gpt/bot/bot_commands.py index e1fe72c..ae9d65b 100644 --- a/matrix_gpt/bot/bot_commands.py +++ b/matrix_gpt/bot/bot_commands.py @@ -57,7 +57,7 @@ class Command: async def process(self): """Process the command""" - # await self.client.room_read_markers(self.room.room_id, self.event.event_id, self.event.event_id) + await self.client.room_read_markers(self.room.room_id, self.event.event_id, self.event.event_id) self.command = self.command.strip() # if self.command.startswith("echo"): # await self._echo()