pull/32/head
kunfei 5 years ago
parent bd8e77b499
commit 6dea502771
  1. 2
      app/src/main/java/io/legado/app/model/webbook/BookChapterList.kt

@ -70,7 +70,6 @@ object BookChapterList {
} }
} }
for (item in chapterDataList) { for (item in chapterDataList) {
if (!nextUrlList.contains(item.nextUrl)) {
withContext(coroutineScope.coroutineContext) { withContext(coroutineScope.coroutineContext) {
val nextResponse = AnalyzeUrl(ruleUrl = item.nextUrl, book = book).getResponseAsync().await() val nextResponse = AnalyzeUrl(ruleUrl = item.nextUrl, book = book).getResponseAsync().await()
val nextChapterData = analyzeChapterList( val nextChapterData = analyzeChapterList(
@ -83,7 +82,6 @@ object BookChapterList {
item.chapterList = nextChapterData.chapterList item.chapterList = nextChapterData.chapterList
} }
} }
}
for (item in chapterDataList) { for (item in chapterDataList) {
item.chapterList?.let { item.chapterList?.let {
chapterList.addAll(it) chapterList.addAll(it)

Loading…
Cancel
Save