Merge pull request #2042 from 821938089/fix-booksource-edit

fix booksource edit
pull/2046/head
kunfei 2 years ago committed by GitHub
commit 7746b7d53b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      app/src/main/java/io/legado/app/ui/book/source/edit/BookSourceEditActivity.kt

@ -330,7 +330,7 @@ class BookSourceEditActivity :
when (it.key) {
"searchUrl" -> source.searchUrl = it.value
"checkKeyWord" -> searchRule.checkKeyWord = it.value
"bookList" -> searchRule.bookList = it.value ?: ""
"bookList" -> searchRule.bookList = it.value
"name" -> searchRule.name =
viewModel.ruleComplete(it.value, searchRule.bookList)
"author" -> searchRule.author =
@ -354,7 +354,7 @@ class BookSourceEditActivity :
findEntities.forEach {
when (it.key) {
"exploreUrl" -> source.exploreUrl = it.value
"bookList" -> exploreRule.bookList = it.value ?: ""
"bookList" -> exploreRule.bookList = it.value
"name" -> exploreRule.name =
viewModel.ruleComplete(it.value, exploreRule.bookList)
"author" -> exploreRule.author =

Loading…
Cancel
Save