fix
This commit is contained in:
parent
710669cd1c
commit
cc7d8d0a86
12
main.py
12
main.py
@ -64,12 +64,12 @@ async def check_updates():
|
||||
thumb=post.preview.url,
|
||||
caption=caption)
|
||||
elif post.file.ext in ('png', 'jpg'):
|
||||
file_resized = BytesIO()
|
||||
im = Image.open(file)
|
||||
im.thumbnail((2048, 2048), Image.LANCZOS)
|
||||
im.save(file_resized, format='JPEG')
|
||||
im.name = 'file.jpg'
|
||||
im.seek(0)
|
||||
if post.file.size > 10000000:
|
||||
im = Image.open(file)
|
||||
im.thumbnail((2048, 2048), Image.LANCZOS)
|
||||
file.truncate(0)
|
||||
im.save(file, format='JPEG')
|
||||
im.seek(0)
|
||||
await bot.send_photo(int(os.environ['SEND_CHAT']),
|
||||
file_resized,
|
||||
caption=caption)
|
||||
|
Loading…
Reference in New Issue
Block a user