Поправлен parse_mode

This commit is contained in:
Денис Семёнов 2025-07-01 21:00:46 +03:00
parent 2a351fdbd7
commit 98f4f8717b

View File

@ -141,7 +141,7 @@ class Bot(BaseConnection):
attachments=attachments, attachments=attachments,
link=link, link=link,
notify=self._resolve_notify(notify), notify=self._resolve_notify(notify),
parse_mode=self._resolve_parse_mode(notify) parse_mode=self._resolve_parse_mode(parse_mode)
).request() ).request()
async def send_action( async def send_action(
@ -193,7 +193,7 @@ class Bot(BaseConnection):
attachments=attachments, attachments=attachments,
link=link, link=link,
notify=self._resolve_notify(notify), notify=self._resolve_notify(notify),
parse_mode=self._resolve_parse_mode(notify) parse_mode=self._resolve_parse_mode(parse_mode)
).request() ).request()
async def delete_message( async def delete_message(