mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-04 23:28:19 -05:00
Fix the chapter count not calculated correctly
This commit is contained in:
parent
82b8564402
commit
34f89e5cfd
@ -51,7 +51,7 @@ class BookAdapter(val b: Book, val prefs: BibleViewerPreferences)
|
||||
|
||||
val versification = b.getVersification()
|
||||
val bookList = versification.getBooks()
|
||||
val chapterCount = bookList.map { versification.getLastChapter(it) - 1 }.sum()
|
||||
// val chapterCount = bookList.map { versification.getLastChapter(it) - 1 }.sum()
|
||||
|
||||
/**
|
||||
* Store information needed to decode the text of a chapter
|
||||
@ -117,7 +117,7 @@ class BookAdapter(val b: Book, val prefs: BibleViewerPreferences)
|
||||
/**
|
||||
* Get the number of chapters in the book
|
||||
*/
|
||||
override fun getItemCount(): Int = chapterCount
|
||||
override fun getItemCount(): Int = chapterList.size()
|
||||
|
||||
public fun bindScrollHandler(provider: PublishSubject<BookScrollEvent>,
|
||||
lM: RecyclerView.LayoutManager) {
|
||||
|
Loading…
Reference in New Issue
Block a user