Improved avatars preview a bit
This commit is contained in:
parent
efcb60ed95
commit
c8f1ef5741
@ -53,7 +53,9 @@ async def inline_answer(client, inline_query):
|
|||||||
|
|
||||||
if match.user.photo != None:
|
if match.user.photo != None:
|
||||||
try:
|
try:
|
||||||
await app.download_media(match.user.photo.big_file_id, file_name=f'{configGet("cache", "locations")}{sep}avatars{sep}{match.user.photo.big_file_id}')
|
if not path.exists(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}', flush=True)
|
||||||
|
await app.download_media(match.user.photo.big_file_id, file_name=f'{configGet("cache", "locations")}{sep}avatars{sep}{match.user.photo.big_file_id}')
|
||||||
results.append(
|
results.append(
|
||||||
InlineQueryResultArticle(
|
InlineQueryResultArticle(
|
||||||
title=str(match.user.first_name),
|
title=str(match.user.first_name),
|
||||||
@ -64,7 +66,6 @@ async def inline_answer(client, inline_query):
|
|||||||
thumb_url=f'{configGet("api")}/?avatar_id={match.user.photo.big_file_id}'
|
thumb_url=f'{configGet("api")}/?avatar_id={match.user.photo.big_file_id}'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
print(f'{configGet("api")}/?avatar_id={match.user.photo.big_file_id}', flush=True)
|
|
||||||
except ValueError:
|
except ValueError:
|
||||||
results.append(
|
results.append(
|
||||||
InlineQueryResultArticle(
|
InlineQueryResultArticle(
|
||||||
|
Reference in New Issue
Block a user