Added support for new avatars API

This commit is contained in:
Profitroll 2023-04-14 14:05:31 +02:00
parent 1d14fd014b
commit 4961d6ba79
1 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ async def inline_answer(client: Client, inline_query: InlineQuery):
f'{configGet("cache", "locations")}{sep}avatars{sep}{match.user.photo.big_file_id}'
):
print(
f'Downloaded avatar {match.user.photo.big_file_id} of {match.user.id} and uploaded to {configGet("api")}/?avatar_id={match.user.photo.big_file_id}',
f'Downloaded avatar {match.user.photo.big_file_id} of {match.user.id} and uploaded to {configGet("api")}/avatars/{match.user.photo.big_file_id}',
flush=True,
)
await app.download_media(
@ -230,7 +230,7 @@ async def inline_answer(client: Client, inline_query: InlineQuery):
"user",
locale=inline_query.from_user,
).format(match.user.first_name, match.user.username),
thumb_url=f'{configGet("api")}/?avatar_id={match.user.photo.big_file_id}',
thumb_url=f'{configGet("api")}/avatars/{match.user.photo.big_file_id}',
)
)
except ValueError: