From 4e7ac2f5c9ff92c189fbb7ed0b63dae3059dc71e Mon Sep 17 00:00:00 2001 From: syomie Date: Mon, 28 Feb 2022 10:29:08 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ui/book/source/edit/BookSourceEditActivity.kt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/src/main/java/io/legado/app/ui/book/source/edit/BookSourceEditActivity.kt b/app/src/main/java/io/legado/app/ui/book/source/edit/BookSourceEditActivity.kt index 8187cf283..28803d546 100644 --- a/app/src/main/java/io/legado/app/ui/book/source/edit/BookSourceEditActivity.kt +++ b/app/src/main/java/io/legado/app/ui/book/source/edit/BookSourceEditActivity.kt @@ -335,8 +335,8 @@ class BookSourceEditActivity : "updateTime" -> searchRule.updateTime = ruleComplete(it.value,searchRule.bookList) "wordCount" -> searchRule.wordCount = ruleComplete(it.value,searchRule.bookList) "lastChapter" -> searchRule.lastChapter = ruleComplete(it.value,searchRule.bookList) - "coverUrl" -> searchRule.coverUrl = ruleComplete(it.value,searchRule.bookList, type = 3) - "bookUrl" -> searchRule.bookUrl = ruleComplete(it.value,searchRule.bookList, type = 2) + "coverUrl" -> searchRule.coverUrl = ruleComplete(it.value,searchRule.bookList,3) + "bookUrl" -> searchRule.bookUrl = ruleComplete(it.value,searchRule.bookList,2) } } findEntities.forEach { @@ -350,15 +350,15 @@ class BookSourceEditActivity : "updateTime" -> exploreRule.updateTime = ruleComplete(it.value,exploreRule.bookList) "wordCount" -> exploreRule.wordCount = ruleComplete(it.value,exploreRule.bookList) "lastChapter" -> exploreRule.lastChapter = ruleComplete(it.value,exploreRule.bookList) - "coverUrl" -> exploreRule.coverUrl = ruleComplete(it.value,exploreRule.bookList, type = 3) - "bookUrl" -> exploreRule.bookUrl = ruleComplete(it.value,exploreRule.bookList, type = 2) + "coverUrl" -> exploreRule.coverUrl = ruleComplete(it.value,exploreRule.bookList,3) + "bookUrl" -> exploreRule.bookUrl = ruleComplete(it.value,exploreRule.bookList,2) } } infoEntities.forEach { when (it.key) { "init" -> bookInfoRule.init = it.value ?: "" "name" -> bookInfoRule.name = ruleComplete(it.value, bookInfoRule.init) - "author" -> bookInfoRule.author = ruleComplete(it.value,tocRule.chapterList, bookInfoRule.init) + "author" -> bookInfoRule.author = ruleComplete(it.value, bookInfoRule.init) "kind" -> bookInfoRule.kind = ruleComplete(it.value, bookInfoRule.init) "intro" -> bookInfoRule.intro = ruleComplete(it.value, bookInfoRule.init) "updateTime" -> bookInfoRule.updateTime = ruleComplete(it.value, bookInfoRule.init) @@ -374,12 +374,12 @@ class BookSourceEditActivity : when (it.key) { "chapterList" -> tocRule.chapterList = it.value ?: "" "chapterName" -> tocRule.chapterName = ruleComplete(it.value,tocRule.chapterList) - "chapterUrl" -> tocRule.chapterUrl = ruleComplete(it.value,tocRule.chapterList, type = 2) + "chapterUrl" -> tocRule.chapterUrl = ruleComplete(it.value,tocRule.chapterList, 2) "isVolume" -> tocRule.isVolume = it.value "updateTime" -> tocRule.updateTime = it.value "isVip" -> tocRule.isVip = it.value "isPay" -> tocRule.isPay = it.value - "nextTocUrl" -> tocRule.nextTocUrl = ruleComplete(it.value,tocRule.chapterList, type = 2) + "nextTocUrl" -> tocRule.nextTocUrl = ruleComplete(it.value,tocRule.chapterList,2) } } contentEntities.forEach {