diff --git a/pyrogram/types/messages_and_media/message.py b/pyrogram/types/messages_and_media/message.py index 304473a3..dba40d6f 100644 --- a/pyrogram/types/messages_and_media/message.py +++ b/pyrogram/types/messages_and_media/message.py @@ -2848,7 +2848,7 @@ class Message(Object, Update): disable_notification=disable_notification, reply_to_message_id=reply_to_message_id, schedule_date=schedule_date, - reply_markup=reply_markup + reply_markup=self.reply_markup or reply_markup ) elif self.media: send_media = partial( @@ -2857,7 +2857,7 @@ class Message(Object, Update): disable_notification=disable_notification, reply_to_message_id=reply_to_message_id, schedule_date=schedule_date, - reply_markup=reply_markup + reply_markup=self.reply_markup or reply_markup ) if self.photo: