Made `hideNewItemsLoaded` more null safe
This commit is contained in:
parent
047535b665
commit
44d3d8b201
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ class FeedFragment : BaseStateFragment<FeedState>() {
|
||||||
execOnEnd = {
|
execOnEnd = {
|
||||||
// Make the layout invisible so that the onScroll toTop method
|
// Make the layout invisible so that the onScroll toTop method
|
||||||
// only does necessary work
|
// only does necessary work
|
||||||
feedBinding.newItemsLoadedLayout.isVisible = false
|
feedBinding?.newItemsLoadedLayout?.isVisible = false
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue