mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-04 17:16:21 +00:00
situation when opf file content is
<meta name="cover" content="cover.jpg"/>
This commit is contained in:
parent
7972b987d4
commit
9a2877ebd5
@ -65,6 +65,12 @@ def get_epub_info(tmp_file_path, original_file_name, original_file_extension):
|
|||||||
coverfile = extractCover(zip, filename, "", tmp_file_path)
|
coverfile = extractCover(zip, filename, "", tmp_file_path)
|
||||||
else:
|
else:
|
||||||
coverfile = extractCover(zip, coversection[0], coverpath, tmp_file_path)
|
coverfile = extractCover(zip, coversection[0], coverpath, tmp_file_path)
|
||||||
|
else:
|
||||||
|
meta_cover = tree.xpath("/pkg:package/pkg:metadata/pkg:meta[@name='cover']/@content", namespaces=ns)
|
||||||
|
if len(meta_cover) > 0:
|
||||||
|
meta_cover_content = tree.xpath("/pkg:package/pkg:manifest/pkg:item[@id='"+meta_cover[0]+"']/@href",namespaces=ns)
|
||||||
|
if len(meta_cover_content) > 0:
|
||||||
|
coverfile = extractCover(zip, meta_cover_content[0], coverpath, tmp_file_path)
|
||||||
else:
|
else:
|
||||||
coverfile = None
|
coverfile = None
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user