mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-03 11:29:28 -05:00
Fixing error sentinel for pdftotext when the PDF has no text (scanned images). It was causing a crash previously.
This commit is contained in:
parent
c20ea417ee
commit
bc5c45a705
@ -235,6 +235,6 @@ def get_text_from_pdf(pdf_file):
|
|||||||
try:
|
try:
|
||||||
pdf = pdftotext.PDF(f)
|
pdf = pdftotext.PDF(f)
|
||||||
except pdftotext.Error:
|
except pdftotext.Error:
|
||||||
return False
|
return ""
|
||||||
|
|
||||||
return "\n".join(pdf)
|
return "\n".join(pdf)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user