add null checks at search query change updates
This commit is contained in:
parent
c25bfdebcf
commit
3c834fe521
|
@ -166,7 +166,7 @@ abstract class MyViewPagerFragment(context: Context, attributeSet: AttributeSet)
|
|||
}
|
||||
|
||||
fun onSearchQueryChanged(text: String) {
|
||||
(fragment_list.adapter as ContactsAdapter).apply {
|
||||
(fragment_list.adapter as? ContactsAdapter)?.apply {
|
||||
val filtered = contactsIgnoringSearch.filter {
|
||||
it.getFullName(startNameWithSurname).contains(text, true) ||
|
||||
it.phoneNumbers.any { it.value.contains(text, true) } ||
|
||||
|
|
Loading…
Reference in New Issue