From 9f2f233c22d44d08020fa5c770d724039f6c0b33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A2u=20Cao?= Date: Sat, 25 Apr 2026 10:41:39 +0100 Subject: [PATCH] Adjust JPEG quality for large photos --- app/components/place-photo-upload-item.gjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/place-photo-upload-item.gjs b/app/components/place-photo-upload-item.gjs index 0e41c2a..de5c8f6 100644 --- a/app/components/place-photo-upload-item.gjs +++ b/app/components/place-photo-upload-item.gjs @@ -10,7 +10,7 @@ import { isMobile } from '../utils/device'; import Blurhash from './blurhash'; const MAX_IMAGE_DIMENSION = 1920; -const IMAGE_QUALITY = 0.94; +const IMAGE_QUALITY = 0.9; const MAX_THUMBNAIL_DIMENSION = 350; const THUMBNAIL_QUALITY = 0.9;