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

fix https://github.com/gedoor/legado/issues/2338
This commit is contained in:
Xwite
2022-09-27 09:04:53 +08:00
parent c1017b22c2
commit cfd9fa90ad
@@ -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 {