From e5f3f8853c32d90f55abb1d4068f1691bba14286 Mon Sep 17 00:00:00 2001 From: 0xMRTT <0xMRTT@proton.me> Date: Mon, 26 Jun 2023 10:41:32 +0200 Subject: [PATCH] fix: send help as markdown --- matrixai/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matrixai/__init__.py b/matrixai/__init__.py index 066d5c7..6e6628e 100644 --- a/matrixai/__init__.py +++ b/matrixai/__init__.py @@ -235,7 +235,7 @@ For text generation, invite `@ai:psf.lt` and match.prefix() and (match.command("help") or match.command("?") or match.command("h")) ): - await bot.api.send_text_message(room.room_id, bot_help_message) + await bot.api.send_markdown_message(room.room_id, bot_help_message) try: bot.run()