Merge pull request #2520 from qianfanguojin/master

fix: fix: 尝试使用文件名是否带 cover 来解决某些epub封面的读取问题
This commit is contained in:
kunfei 2022-11-04 13:39:25 +08:00 committed by GitHub
commit e75273f8dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,9 +119,10 @@ class EpubFile(var book: Book) {
/**
* <image width="1038" height="670" xlink:href="..."/>
* ...titlepage.xhtml
* 大多数epub文件的封面页都会带有cover可以一定程度上解决封面读取问题
*/
if (chapter.url.contains("titlepage.xhtml") ||
chapter.url.contains("cover.xhtml")
chapter.url.contains("cover")
) {
return "<img src=\"cover.jpeg\" />"
}