mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: use unmodified original for checksum if exists (#8693)
This commit is contained in:
parent
1d5e7e930e
commit
86788f1445
@ -718,11 +718,17 @@ class ConsumerPlugin(
|
|||||||
f"Error occurred parsing title override '{self.metadata.title}', falling back to original. Exception: {e}",
|
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(
|
document = Document.objects.create(
|
||||||
title=title[:127],
|
title=title[:127],
|
||||||
content=text,
|
content=text,
|
||||||
mime_type=mime_type,
|
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,
|
created=create_date,
|
||||||
modified=create_date,
|
modified=create_date,
|
||||||
storage_type=storage_type,
|
storage_type=storage_type,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user