Fix crash in maga details

This commit is contained in:
Jay 2020-05-17 04:53:36 -04:00
parent 3910d23899
commit 87ab6fa8de

View File

@ -517,6 +517,7 @@ class MangaDetailsController : BaseController,
} }
fun updateChapters(chapters: List<ChapterItem>) { fun updateChapters(chapters: List<ChapterItem>) {
view ?: return
swipe_refresh?.isRefreshing = presenter.isLoading swipe_refresh?.isRefreshing = presenter.isLoading
if (presenter.chapters.isEmpty() && fromCatalogue && !presenter.hasRequested) { if (presenter.chapters.isEmpty() && fromCatalogue && !presenter.hasRequested) {
launchUI { swipe_refresh?.isRefreshing = true } launchUI { swipe_refresh?.isRefreshing = true }
@ -524,7 +525,7 @@ class MangaDetailsController : BaseController,
} }
adapter?.setChapters(chapters) adapter?.setChapters(chapters)
addMangaHeader() addMangaHeader()
colorToolbar(recycler.canScrollVertically(-1)) colorToolbar(recycler?.canScrollVertically(-1) == true)
activity?.invalidateOptionsMenu() activity?.invalidateOptionsMenu()
} }