mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-14 18:46:52 +01:00
Fix importing files with non-ascii names (#2555)
This commit is contained in:
parent
dace08d4e3
commit
dae4550bc3
1 changed files with 1 additions and 1 deletions
|
|
@ -90,7 +90,7 @@ class TikaDocumentParser(DocumentParser):
|
||||||
with open(document_path, "rb") as document_handle:
|
with open(document_path, "rb") as document_handle:
|
||||||
files = {
|
files = {
|
||||||
"files": (
|
"files": (
|
||||||
file_name or os.path.basename(document_path),
|
"convert" + os.path.splitext(document_path)[-1],
|
||||||
document_handle,
|
document_handle,
|
||||||
),
|
),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue