Copy default thumbnail if thumbnail generation fails

Fix #3631
This commit is contained in:
Johannes Plunien 2023-06-20 08:56:27 +02:00 committed by Trenton H
parent 25ccff8640
commit 83a760644d

View File

@ -202,7 +202,12 @@ def make_thumbnail_from_pdf_gs_fallback(in_path, temp_dir, logging_group=None) -
return out_path
except ParseError:
return get_default_thumbnail()
# The caller might expect a generated thumbnail that can be moved,
# so we need to copy it before it gets moved.
# https://github.com/paperless-ngx/paperless-ngx/issues/3631
default_thumbnail_path = os.path.join(temp_dir, "document.png")
shutil.copy2(get_default_thumbnail(), default_thumbnail_path)
return default_thumbnail_path
def make_thumbnail_from_pdf(in_path, temp_dir, logging_group=None) -> str: