mirror of
https://github.com/element-hq/element-android
synced 2024-11-28 13:38:49 +03:00
Fix compilation issue after merge
This commit is contained in:
parent
90d25ff45e
commit
77fa5af1b8
1 changed files with 2 additions and 2 deletions
|
@ -144,9 +144,9 @@ class PublicRoomsFragment : VectorBaseFragment(), PublicRoomsController.Callback
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun invalidate() = withState(viewModel) { state ->
|
override fun invalidate() = withState(viewModel) { state ->
|
||||||
if (publicRoomsFilter.text.toString() != state.currentFilter) {
|
if (publicRoomsFilter.query.toString() != state.currentFilter) {
|
||||||
// For initial filter
|
// For initial filter
|
||||||
publicRoomsFilter.setText(state.currentFilter)
|
publicRoomsFilter.setQuery(state.currentFilter, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Populate list with Epoxy
|
// Populate list with Epoxy
|
||||||
|
|
Loading…
Reference in a new issue