fix: ReadBook.durChapterIndex not changed when book.durChapterIndex change

fix https://github.com/gedoor/legado/issues/2338
pull/2339/head
Xwite 2 years ago
parent 49f286313f
commit ec3fe5ab42
  1. 3
      app/src/main/java/io/legado/app/ui/book/read/ReadBookViewModel.kt

@ -85,7 +85,10 @@ class ReadBookViewModel(application: Application) : BaseViewModel(application) {
} else if (isSameBook) {
if (ReadBook.curTextChapter != null) {
ReadBook.callBack?.upContent(resetPageOffset = false)
} else if(ReadBook.durChapterIndex == book.durChapterIndex) {
ReadBook.loadContent(resetPageOffset = true)
} else {
ReadBook.durChapterIndex = book.durChapterIndex
ReadBook.loadContent(resetPageOffset = true)
}
} else {

Loading…
Cancel
Save