diff --git a/app/src/main/java/io/legado/app/service/help/ReadBook.kt b/app/src/main/java/io/legado/app/service/help/ReadBook.kt index 2e601b51d..d1b7f22e0 100644 --- a/app/src/main/java/io/legado/app/service/help/ReadBook.kt +++ b/app/src/main/java/io/legado/app/service/help/ReadBook.kt @@ -218,21 +218,18 @@ object ReadBook { ) when (chapter.index) { durChapterIndex -> withContext(Main) { - curTextChapter = ChapterProvider - .getTextChapter(chapter, c, chapterSize) + curTextChapter = ChapterProvider.getTextChapter(chapter, c, chapterSize) callBack?.upContent() callBack?.curChapterChanged() curPageChanged() callBack?.contentLoadFinish() } durChapterIndex - 1 -> withContext(Main) { - prevTextChapter = ChapterProvider - .getTextChapter(chapter, c, chapterSize) + prevTextChapter = ChapterProvider.getTextChapter(chapter, c, chapterSize) callBack?.upContent(-1) } durChapterIndex + 1 -> withContext(Main) { - nextTextChapter = ChapterProvider - .getTextChapter(chapter, c, chapterSize) + nextTextChapter = ChapterProvider.getTextChapter(chapter, c, chapterSize) callBack?.upContent(1) } }