Fix crash when quickly leaving manga details

This commit is contained in:
Jay 2020-04-28 22:33:19 -04:00
parent 79745e19d2
commit 51b50d8a51

View File

@ -1022,7 +1022,7 @@ class MangaDetailsController : BaseController,
// In case the recycler is at the bottom and collapsing the header makes it unscrollable
override fun updateScroll() {
if (!recycler.canScrollVertically(-1)) {
if (recycler?.canScrollVertically(-1) == false) {
getHeader()?.backdrop?.translationY = 0f
activity?.appbar?.y = 0f
colorToolbar(isColor = false, animate = false)