mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Use the original image file for the checksum, not the maybe alpha removed version (#4781)
This commit is contained in:
parent
aff56077a8
commit
5b502b1e1a
@ -519,7 +519,11 @@ class Consumer(LoggingMixin):
|
||||
document.filename = generate_unique_filename(document)
|
||||
create_source_path_directory(document.source_path)
|
||||
|
||||
self._write(document.storage_type, self.path, document.source_path)
|
||||
self._write(
|
||||
document.storage_type,
|
||||
self.original_path,
|
||||
document.source_path,
|
||||
)
|
||||
|
||||
self._write(
|
||||
document.storage_type,
|
||||
@ -711,7 +715,6 @@ class Consumer(LoggingMixin):
|
||||
|
||||
storage_type = Document.STORAGE_TYPE_UNENCRYPTED
|
||||
|
||||
with open(self.path, "rb") as f:
|
||||
document = Document.objects.create(
|
||||
title=(
|
||||
self._parse_title_placeholders(self.override_title)
|
||||
@ -720,7 +723,7 @@ class Consumer(LoggingMixin):
|
||||
)[:127],
|
||||
content=text,
|
||||
mime_type=mime_type,
|
||||
checksum=hashlib.md5(f.read()).hexdigest(),
|
||||
checksum=hashlib.md5(self.original_path.read_bytes()).hexdigest(),
|
||||
created=create_date,
|
||||
modified=create_date,
|
||||
storage_type=storage_type,
|
||||
|
@ -105,7 +105,7 @@ def get_supported_file_extensions() -> set[str]:
|
||||
return extensions
|
||||
|
||||
|
||||
def get_parser_class_for_mime_type(mime_type: str) -> Optional["DocumentParser"]:
|
||||
def get_parser_class_for_mime_type(mime_type: str) -> Optional[type["DocumentParser"]]:
|
||||
"""
|
||||
Returns the best parser (by weight) for the given mimetype or
|
||||
None if no parser exists
|
||||
|
Loading…
x
Reference in New Issue
Block a user