2
0
mirror of https://github.com/pyrogram/pyrogram synced 2025-08-28 21:07:59 +00:00

Merge branch 'asyncio-dev' of https://github.com/pyrogram/pyrogram into asyncio-dev

This commit is contained in:
Dan 2020-07-06 16:07:40 +02:00
commit 476b6b022f

View File

@ -91,7 +91,7 @@ class InlineQueryResultAnimation(InlineQueryResult):
self.reply_markup = reply_markup
self.input_message_content = input_message_content
def write(self):
async def write(self):
animation = types.InputWebDocument(
url=self.animation_url,
size=0,
@ -121,7 +121,7 @@ class InlineQueryResultAnimation(InlineQueryResult):
if self.input_message_content
else types.InputBotInlineMessageMediaAuto(
reply_markup=self.reply_markup.write() if self.reply_markup else None,
**(Parser(None)).parse(self.caption, self.parse_mode)
**await(Parser(None)).parse(self.caption, self.parse_mode)
)
)
)