mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-12 20:47:42 +01:00
Fix exif not unserialized correctly
This commit is contained in:
parent
33462d9fec
commit
8bc9b8c8fd
1 changed files with 1 additions and 1 deletions
|
@ -213,7 +213,7 @@ abstract class DbMetadataConverter {
|
||||||
fileEtag: src.fileEtag,
|
fileEtag: src.fileEtag,
|
||||||
imageWidth: src.width,
|
imageWidth: src.width,
|
||||||
imageHeight: src.height,
|
imageHeight: src.height,
|
||||||
exif: src.exif?.let(Exif.new),
|
exif: src.exif?.let(Exif.fromJson),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue