Commit 52499d54 authored by Oleg Dzhimiev's avatar Oleg Dzhimiev

fixed exif parsing error for older files - didn't have channel in MakerNote

parent edf41700
...@@ -68,7 +68,10 @@ class JP4_C(JP4): ...@@ -68,7 +68,10 @@ class JP4_C(JP4):
else: else:
subnames = self.exif.data['Page'][0] if self.exif.data['Page']:
subnames = self.exif.data['Page'][0]
else:
subnames = 0
return subnames return subnames
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment