添加批量换源

pull/1751/head
kunfei 3 years ago
parent 155e02fe63
commit c267382d6f
  1. 1
      app/src/main/java/io/legado/app/ui/book/arrange/ArrangeBookViewModel.kt

@ -45,6 +45,7 @@ class ArrangeBookViewModel(application: Application) : BaseViewModel(application
books.forEachIndexed { index, book -> books.forEachIndexed { index, book ->
batchChangeSourcePosition.value = index + 1 batchChangeSourcePosition.value = index + 1
if (book.isLocalBook()) return@forEachIndexed if (book.isLocalBook()) return@forEachIndexed
if (book.origin == source.bookSourceUrl) return@forEachIndexed
WebBook.preciseSearchAwait(this, book.name, book.author, source)?.let { WebBook.preciseSearchAwait(this, book.name, book.author, source)?.let {
book.changeTo(it.second) book.changeTo(it.second)
} }

Loading…
Cancel
Save