diff --git a/src/photo/actions.ts b/src/photo/actions.ts index dc8099f3..6409b99f 100644 --- a/src/photo/actions.ts +++ b/src/photo/actions.ts @@ -362,6 +362,8 @@ export const syncPhotoAction = async (photoId: string) => const photoFormDbInsert = convertFormDataToPhotoDbInsert({ ...convertPhotoToFormData(photo), ...photoFormExif, + // Don't overwrite manually configured film simulations + ...photo.filmSimulation && { filmSimulation: photo.filmSimulation }, ...!BLUR_ENABLED && { blurData: undefined }, ...!photo.title && { title: atTitle }, ...!photo.caption && { caption: aiCaption },