Bug fix in handling missing edited photos

This commit is contained in:
Rhet Turnbull
2020-11-07 22:47:44 -08:00
parent df37a017a8
commit e829212987

View File

@@ -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