Fix the chapter count not calculated correctly

parser-fixes
Bradlee Speice 2015-01-18 22:36:45 -05:00
parent 82b8564402
commit 34f89e5cfd
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class BookAdapter(val b: Book, val prefs: BibleViewerPreferences)
val versification = b.getVersification() val versification = b.getVersification()
val bookList = versification.getBooks() 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 * 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 * 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>, public fun bindScrollHandler(provider: PublishSubject<BookScrollEvent>,
lM: RecyclerView.LayoutManager) { lM: RecyclerView.LayoutManager) {