diff --git a/matrix_gpt/bot/chat_functions.py b/matrix_gpt/bot/chat_functions.py index b2dd952..72774d9 100644 --- a/matrix_gpt/bot/chat_functions.py +++ b/matrix_gpt/bot/chat_functions.py @@ -115,6 +115,7 @@ def is_thread(event: RoomMessageText): async def is_this_our_thread(client: AsyncClient, room: MatrixRoom, event: RoomMessageText, command_flag: str): base_event_id = event.source['content'].get('m.relates_to', {}).get('event_id') if base_event_id: + logging.debug((await client.room_get_event(room.room_id, base_event_id)).event.body) return (await client.room_get_event(room.room_id, base_event_id)).event.body.startswith(f'{command_flag} ') else: return False