pull/302/head
gedoor 4 years ago
parent c2dc7119e1
commit f5d15056c3
  1. 4
      app/src/main/java/io/legado/app/ui/book/read/Help.kt

@ -133,7 +133,7 @@ object Help {
.apply { .apply {
view = this view = this
setBackgroundColor(context.backgroundColor) setBackgroundColor(context.backgroundColor)
edit_start.setText(book.durChapterIndex.toString()) edit_start.setText((book.durChapterIndex + 1).toString())
edit_end.setText(book.totalChapterNum.toString()) edit_end.setText(book.totalChapterNum.toString())
} }
} }
@ -141,7 +141,7 @@ object Help {
view?.apply { view?.apply {
val start = edit_start?.text?.toString()?.toInt() ?: 0 val start = edit_start?.text?.toString()?.toInt() ?: 0
val end = edit_end?.text?.toString()?.toInt() ?: book.totalChapterNum val end = edit_end?.text?.toString()?.toInt() ?: book.totalChapterNum
Download.start(context, book.bookUrl, start, end) Download.start(context, book.bookUrl, start - 1, end - 1)
} }
} }
noButton() noButton()

Loading…
Cancel
Save