diff --git a/app/src/main/java/io/legado/app/model/ReadBook.kt b/app/src/main/java/io/legado/app/model/ReadBook.kt index f0e1bb27f..936334982 100644 --- a/app/src/main/java/io/legado/app/model/ReadBook.kt +++ b/app/src/main/java/io/legado/app/model/ReadBook.kt @@ -204,6 +204,7 @@ object ReadBook : CoroutineScope by MainScope() { nextTextChapter = null if (curTextChapter == null) { AppLog.putDebug("moveToNextChapter-章节未加载,开始加载") + callBack?.upContent() loadContent(durChapterIndex, upContent, resetPageOffset = false) } else if (upContent) { AppLog.putDebug("moveToNextChapter-章节已加载,刷新视图") @@ -232,6 +233,7 @@ object ReadBook : CoroutineScope by MainScope() { curTextChapter = prevTextChapter prevTextChapter = null if (curTextChapter == null) { + callBack?.upContent() loadContent(durChapterIndex, upContent, resetPageOffset = false) } else if (upContent) { callBack?.upContent()