fix for that last commit

This commit is contained in:
Jays2Kings 2021-07-04 16:46:16 -04:00
parent 8ac340eff0
commit d49bb4dfc8

View File

@ -182,7 +182,8 @@ class PagerViewerAdapter(private val viewer: PagerViewer) : ViewPagerAdapter() {
// Step 1: segment the pages and transition pages
subItems.forEach {
if (it is ReaderPage) {
if (pagedItems.last().lastOrNull()?.chapter?.chapter?.id != it.chapter.chapter.id) {
if (pagedItems.last().lastOrNull() != null &&
pagedItems.last().last()?.chapter?.chapter?.id != it.chapter.chapter.id) {
pagedItems.add(mutableListOf())
}
pagedItems.last().add(it)