From acae98515ac94ca9b3ba1e998f3c2d9075d48a14 Mon Sep 17 00:00:00 2001 From: machiav3lli Date: Tue, 18 Jan 2022 01:47:35 +0100 Subject: [PATCH] Fix: Apps list not showing on launch --- .../kotlin/com/looker/droidify/ui/fragments/ExploreFragment.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/kotlin/com/looker/droidify/ui/fragments/ExploreFragment.kt b/src/main/kotlin/com/looker/droidify/ui/fragments/ExploreFragment.kt index f7440505..bf2dfd12 100644 --- a/src/main/kotlin/com/looker/droidify/ui/fragments/ExploreFragment.kt +++ b/src/main/kotlin/com/looker/droidify/ui/fragments/ExploreFragment.kt @@ -64,6 +64,7 @@ class ExploreFragment : MainNavFragmentX() { override fun setupLayout() { viewModel.productsList.observe(requireActivity()) { appsItemAdapter.submitList(it) + appsFastAdapter?.notifyDataSetChanged() } } }