From affcb9595e497b5502cf9dd972409a1930e91dd5 Mon Sep 17 00:00:00 2001 From: Cyberes Date: Sat, 18 Mar 2023 14:09:02 -0600 Subject: [PATCH] output --- matrix_gpt/bot/callbacks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrix_gpt/bot/callbacks.py b/matrix_gpt/bot/callbacks.py index 33fef28..067a613 100644 --- a/matrix_gpt/bot/callbacks.py +++ b/matrix_gpt/bot/callbacks.py @@ -76,7 +76,7 @@ class Callbacks: api_data = [] for event in thread_content: if isinstance(event, MegolmEvent): - resp = await send_text_to_room(self.client, room.room_id, 'Decryption Failure', reply_to_event_id=event.event_id, thread=True, thread_root_id=thread_content[0].event_id) + resp = await send_text_to_room(self.client, room.room_id, '❌ 🔐 Decryption Failure', reply_to_event_id=event.event_id, thread=True, thread_root_id=thread_content[0].event_id) logger.critical(f'Decryption failure for event {event.event_id} in room {room.room_id}') await self.client.room_typing(room.room_id, typing_state=False, timeout=3000) self.store.add_event_id(resp.event_id)