Skip to content

Commit

Permalink
Proposed fix for issue #1706 (#1707)
Browse files Browse the repository at this point in the history
  • Loading branch information
oPromessa authored Nov 5, 2024
1 parent 14681e0 commit 70373b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions osxphotos/exifwriter.py
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,8 @@ def exiftool_dict(
if self.photo.date_modified is None or options.ignore_date_modified:
exif["QuickTime:ModifyDate"] = creationdate
else:
exif["QuickTime:ModifyDate"] = datetime_tz_to_utc(
exiftool_datetime(self.photo.date_modified)
exif["QuickTime:ModifyDate"] = exiftool_datetime(
datetime_tz_to_utc(self.photo.date_modified)
)

# if photo in PNG remove any IPTC tags (#1031)
Expand Down

0 comments on commit 70373b6

Please sign in to comment.