pull/2114/head
kunfei 2 years ago
parent 4a27fc26d5
commit 7222778aa3
  1. 6
      app/src/main/java/io/legado/app/model/localBook/EpubFile.kt

@ -100,7 +100,9 @@ class EpubFile(var book: Book) {
} }
} }
/*重写epub文件解析代码,直接读出压缩包文件生成Resources给epublib,这样的好处是可以逐一修改某些文件的格式错误*/ /**
* 重写epub文件解析代码直接读出压缩包文件生成Resources给epublib这样的好处是可以逐一修改某些文件的格式错误
*/
private fun readEpub(): EpubBook? { private fun readEpub(): EpubBook? {
try { try {
val uri = Uri.parse(book.bookUrl) val uri = Uri.parse(book.bookUrl)
@ -141,7 +143,7 @@ class EpubFile(var book: Book) {
/** /**
* fix https://github.com/gedoor/legado/issues/1927 加载全部内容的bug * fix https://github.com/gedoor/legado/issues/1927 加载全部内容的bug
* content src text/000001.html当前章节 * content src text/000001.html当前章节
- * content src text/000001.html#toc_id_x (下一章节 - * content src text/000001.html#toc_id_x (下一章节
*/ */
if (res.href == nextUrl?.substringBeforeLast("#")) break if (res.href == nextUrl?.substringBeforeLast("#")) break
} else if (isChapter) { } else if (isChapter) {

Loading…
Cancel
Save