We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pip3 install -U https://github.com/pyrogram/pyrogram/archive/master.zip
Try to unparse the markdown using Pyrogram and send back the received string using send_message method
error.text and second.text looks different.
error.text
second.text
from pyrogram import Client from pyrogram.enums import ParseMode async def main(): async with Client("my_account") as app: error = await app.get_messages(chat_id=-1001220993104, message_ids=1387647) first = await error.reply(error.text.markdown, parse_mode=ParseMode.DISABLED) second = await error.reply(first.text, parse_mode=ParseMode.MARKDOWN)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Checklist
pip3 install -U https://github.com/pyrogram/pyrogram/archive/master.zip
and reproduced the issue using the latest development versionDescription
Try to unparse the markdown using Pyrogram and send back the received string using send_message method
Steps to reproduce
error.text
andsecond.text
looks different.Code example
Logs
The text was updated successfully, but these errors were encountered: