pull/2178/head
821938089 2 years ago
parent 9e7f04ea07
commit a6c06ddb14
  1. 3
      app/src/main/java/io/legado/app/model/localBook/EpubFile.kt
  2. 1
      app/src/main/java/io/legado/app/model/localBook/LocalBook.kt

@ -257,9 +257,6 @@ class EpubFile(var book: Book) {
} else {
parseFirstPage(chapterList, refs)
parseMenu(chapterList, refs, 0)
val lh = LinkedHashSet(chapterList)
chapterList.clear()
chapterList.addAll(lh)
for (i in chapterList.indices) {
chapterList[i].index = i
}

@ -79,6 +79,7 @@ object LocalBook {
throw TocEmptyException(appCtx.getString(R.string.chapter_list_empty))
}
val lh = LinkedHashSet(chapters)
lh.forEachIndexed { index, bookChapter -> bookChapter.index = index }
return ArrayList(lh)
}

Loading…
Cancel
Save