Fix: use unmodified original for checksum if exists (#8693)

This commit is contained in:
shamoon 2025-01-13 13:02:10 -08:00 committed by GitHub
parent 1d5e7e930e
commit 86788f1445
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -718,11 +718,17 @@ class ConsumerPlugin(
f"Error occurred parsing title override '{self.metadata.title}', falling back to original. Exception: {e}",
)
file_for_checksum = (
self.unmodified_original
if self.unmodified_original is not None
else self.working_copy
)
document = Document.objects.create(
title=title[:127],
content=text,
mime_type=mime_type,
checksum=hashlib.md5(self.working_copy.read_bytes()).hexdigest(),
checksum=hashlib.md5(file_for_checksum.read_bytes()).hexdigest(),
created=create_date,
modified=create_date,
storage_type=storage_type,