From e829212987bbc1a88f845922abcffef70c159883 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sat, 7 Nov 2020 22:47:44 -0800 Subject: [PATCH] Bug fix in handling missing edited photos --- osxphotos/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osxphotos/__main__.py b/osxphotos/__main__.py index 5099c46c..69948bca 100644 --- a/osxphotos/__main__.py +++ b/osxphotos/__main__.py @@ -2319,7 +2319,7 @@ def export_photo( export_original = not (skip_original_if_edited and photo.hasadjustments) # slow_mo photos will always have hasadjustments=True even if not edited - if photo.path_edited is None: + if photo.hasadjustments and photo.path_edited is None: if photo.slow_mo: export_original = True export_edited = False