Fix exif not unserialized correctly

This commit is contained in:
Ming Ming 2023-12-08 00:07:46 +08:00
parent 33462d9fec
commit 8bc9b8c8fd

View file

@ -213,7 +213,7 @@ abstract class DbMetadataConverter {
fileEtag: src.fileEtag,
imageWidth: src.width,
imageHeight: src.height,
exif: src.exif?.let(Exif.new),
exif: src.exif?.let(Exif.fromJson),
);
}