android: Prevent situation where binding is called on a null view

This commit is contained in:
Charles Lombardo 2023-04-23 18:46:42 -04:00 committed by bunnei
parent d7178ed16e
commit 62c47011a0

View File

@ -140,6 +140,9 @@ class GamesFragment : Fragment() {
// Make sure the loading indicator appears even if the layout is told to refresh before being fully drawn
binding.swipeRefresh.post {
if (_binding == null) {
return@post
}
binding.swipeRefresh.isRefreshing = gamesViewModel.isReloading.value!!
}
}