Fixed erroneous attempt to export edited with --download-missing

This commit is contained in:
Rhet Turnbull
2020-11-12 06:51:36 -08:00
parent 802e2f069a
commit 8dc59cbc35
2 changed files with 5 additions and 1 deletions

View File

@@ -2362,6 +2362,10 @@ def export_photo(
results_touched = []
export_original = not (skip_original_if_edited and photo.hasadjustments)
# can't export edited if photo doesn't have edited versions
export_edited = export_edited if photo.hasadjustments else False
# slow_mo photos will always have hasadjustments=True even if not edited
if photo.hasadjustments and photo.path_edited is None:
if photo.slow_mo:

View File

@@ -1,4 +1,4 @@
""" version info """
__version__ = "0.36.16"
__version__ = "0.36.17"