Also save outbox attachment thumbnails as webp

This commit is contained in:
Thomas Sileo 2022-08-26 09:05:55 +02:00
parent 53a31ae562
commit 55d82c5843

View file

@ -65,7 +65,7 @@ async def save_upload(db_session: AsyncSession, f: UploadFile) -> models.Upload:
original_image.thumbnail((740, 740))
original_image.save(
UPLOAD_DIR / f"{content_hash}_resized",
format=original_image.format,
format="webp",
)
except Exception:
logger.exception(