This commit is contained in:
Horis 2023-07-18 00:01:23 +08:00
parent f955825ada
commit 33ec213ffd
2 changed files with 3 additions and 2 deletions

View File

@ -259,7 +259,6 @@ object Restore {
LauncherIconHelp.changeIcon(appCtx.getPrefString(PreferKey.launcherIcon))
}
ThemeConfig.applyDayNight(appCtx)
postEvent(EventBus.RECREATE, "")
}
}

View File

@ -308,7 +308,9 @@ class HttpReadAloudService : BaseReadAloudService(),
for (i in start..contentList[nowSpeak].length) {
if (readAloudNumber + i > textChapter.getReadLength(pageIndex + 1)) {
pageIndex++
ReadBook.moveToNextPage()
if (pageIndex < textChapter.pages.size) {
ReadBook.moveToNextPage()
}
postEvent(EventBus.TTS_PROGRESS, readAloudNumber + i)
}
delay(sleep)