mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Update asyncio_helper.py
This commit is contained in:
parent
3019b71f7f
commit
5939e754bb
@ -149,7 +149,7 @@ async def get_file(token, file_id):
|
|||||||
|
|
||||||
async def get_file_url(token, file_id):
|
async def get_file_url(token, file_id):
|
||||||
if FILE_URL is None:
|
if FILE_URL is None:
|
||||||
return "https://api.telegram.org/file/bot{0}/{1}".format(token, get_file(token, file_id)['file_path'])
|
return "https://api.telegram.org/file/bot{0}/{1}".format(token, await get_file(token, file_id)['file_path'])
|
||||||
else:
|
else:
|
||||||
# noinspection PyUnresolvedReferences
|
# noinspection PyUnresolvedReferences
|
||||||
return FILE_URL.format(token, get_file(token, file_id)['file_path'])
|
return FILE_URL.format(token, get_file(token, file_id)['file_path'])
|
||||||
@ -1821,4 +1821,4 @@ class RequestTimeout(Exception):
|
|||||||
"""
|
"""
|
||||||
This class represents a request timeout.
|
This class represents a request timeout.
|
||||||
"""
|
"""
|
||||||
pass
|
pass
|
||||||
|
Loading…
Reference in New Issue
Block a user