Checklist
Description
When I try to send a message with reply_markup - reply_markup just doesn't show up.
Without any errors.
Steps to reproduce
- Tried to add/remove bot_token from Client.
P.S. I dont even know what I can do. The code is so simple.
Code example
item1 = types.InlineKeyboardButton("Do not resend", callback_data=f"!resend_{message.chat.id}")
markup = types.InlineKeyboardMarkup([[item1]])
await app.send_message(
chat_id=-1002158278968,
text = "some_text",
reply_markup=markup
)
Logs
chat_id = -1002158278968
text="some_text"
reply_markup = {
"_": "InlineKeyboardMarkup",
"inline_keyboard": [
[
{
"_": "InlineKeyboardButton",
"text": "Do not resend",
"callback_data": "!resend_-1002089543094"
}
]
]
}
Checklist
pip3 install -U https://github.com/pyrogram/pyrogram/archive/master.zipand reproduced the issue using the latest development versionDescription
When I try to send a message with reply_markup - reply_markup just doesn't show up.
Without any errors.
Steps to reproduce
P.S. I dont even know what I can do. The code is so simple.
Code example
Logs