Add pubdate, publisher and identifiers metadata #2163

This commit is contained in:
Wulf Rajek
2022-04-05 01:26:35 +01:00
parent d912c1c476
commit 2d0af0ab49
6 changed files with 53 additions and 54 deletions

View File

@@ -130,7 +130,9 @@ def get_comic_info(tmp_file_path, original_file_name, original_file_extension, r
series=loaded_metadata.series or "",
series_id=loaded_metadata.issue or "",
languages=loaded_metadata.language,
publisher="")
publisher="",
pubdate="",
identifiers=[])
return BookMeta(
file_path=tmp_file_path,
@@ -143,4 +145,6 @@ def get_comic_info(tmp_file_path, original_file_name, original_file_extension, r
series="",
series_id="",
languages="",
publisher="")
publisher="",
pubdate="",
identifiers=[])