From 4961d6ba79daed5fd583c9b727bff7164e60ea63 Mon Sep 17 00:00:00 2001 From: profitroll Date: Fri, 14 Apr 2023 14:05:31 +0200 Subject: [PATCH] Added support for new avatars API --- modules/inline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/inline.py b/modules/inline.py index 5173851..626fa83 100644 --- a/modules/inline.py +++ b/modules/inline.py @@ -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: