We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d84a79 commit 29f50ffCopy full SHA for 29f50ff
dataimporter/emu/views/mss.py
@@ -67,8 +67,8 @@ def transform(self, record: SourceRecord) -> dict:
67
}
68
69
# add the orientation tag data from exif if specified
70
- tags = record.get_all_values("ExiTag", reduce=False)
71
- tag_values = record.get_all_values("ExiValue", reduce=False)
+ tags = record.get_all_values("ExiTag", reduce=False, clean=False)
+ tag_values = record.get_all_values("ExiValue", reduce=False, clean=False)
72
if tags and tag_values:
73
try:
74
# the orientation tag is 274 (0x0112), so look up the index of that in
0 commit comments