For some reason this code doesn't work (the message just isn't sent), though InlineTextMessageContent works
results = [
InlineQueryResultArticle(
id=result_id,
title="Rich",
description="Rich",
input_message_content=InputRichMessageContent(
rich_message=InputRichMessage(
markdown=f"# Heading1",
)
)
),
]
await query.answer(results=results, cache_time=1, is_personal=True)
Originally posted by @ReoGentO in aiogram/aiogram#1832
For some reason this code doesn't work (the message just isn't sent), though InlineTextMessageContent works
Originally posted by @ReoGentO in aiogram/aiogram#1832