diff --git a/aiogram/types/message.py b/aiogram/types/message.py index 4b8baa02..5a67b180 100644 --- a/aiogram/types/message.py +++ b/aiogram/types/message.py @@ -1583,7 +1583,7 @@ class Message(base.TelegramObject): :return: """ kwargs = {"chat_id": chat_id, "reply_markup": reply_markup or self.reply_markup, "parse_mode": parse_mode or ParseMode.HTML} - text = self.text or self.caption + text = self.html_text if (self.text or self.caption) else None if disable_notification is not None: kwargs["disable_notification"] = disable_notification