mirror of
https://github.com/janeczku/calibre-web
synced 2025-11-10 04:03:00 +00:00
Fix for missing metadata in pdf files
This commit is contained in:
@@ -70,8 +70,9 @@ def pdf_meta(tmp_file_path, original_file_name, original_file_extension):
|
||||
doc_info = None
|
||||
|
||||
if (doc_info is not None):
|
||||
author = doc_info.author
|
||||
title = doc_info.title
|
||||
print doc_info
|
||||
author = doc_info.author if doc_info.author is not None else "Unknown"
|
||||
title = doc_info.title if doc_info.title is not None else original_file_name
|
||||
subject = doc_info.subject
|
||||
else:
|
||||
author = "Unknown"
|
||||
|
||||
Reference in New Issue
Block a user