From 212ab7743349d5c5f1e6a9411cda86c3ea5824f9 Mon Sep 17 00:00:00 2001 From: Floyd Li Date: Mon, 3 Jun 2024 15:55:00 +0800 Subject: [PATCH] fix: can not get lens model info --- entity/image_container.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entity/image_container.py b/entity/image_container.py index b7b8793..59dc575 100644 --- a/entity/image_container.py +++ b/entity/image_container.py @@ -23,7 +23,7 @@ class ExifId(Enum): CAMERA_MODEL = 'CameraModelName' CAMERA_MAKE = 'Make' - LENS_MODEL = ['LensModel', 'Lens'] + LENS_MODEL = ['LensModel', 'Lens', 'LensID'] LENS_MAKE = 'LensMake' DATETIME = 'DateTimeOriginal' FOCAL_LENGTH = 'FocalLength'