Fix channel page to display selected chip content

This commit is contained in:
Krunal Patel 2022-11-29 18:10:06 +05:30
parent 34211eee4c
commit 946fe6b91f

View File

@ -216,6 +216,12 @@ class ChannelFragment : BaseFragment() {
}
}
}
// Load selected chip content if it's not videos tab.
possibleTabs.firstOrNull { binding.tabChips.checkedChipId == it.chipId }?.let {
val tab = tabs.first { tab -> tab.name == it.identifierName }
loadTab(tab)
}
}
private fun loadTab(tab: ChannelTab) {