use archived file for thumbnail, if available

This commit is contained in:
jonaswinkler 2021-02-21 23:30:14 +01:00
parent 65b37f61ca
commit a13e9f23b1

View File

@ -53,7 +53,9 @@ class RasterisedDocumentParser(DocumentParser):
def get_thumbnail(self, document_path, mime_type, file_name=None): def get_thumbnail(self, document_path, mime_type, file_name=None):
return make_thumbnail_from_pdf( return make_thumbnail_from_pdf(
document_path, self.tempdir, self.logging_group) self.archive_path or document_path,
self.tempdir,
self.logging_group)
def is_image(self, mime_type): def is_image(self, mime_type):
return mime_type in [ return mime_type in [