adding a couple crashfixes

This commit is contained in:
tibbi
2018-03-03 12:59:16 +01:00
parent e85dd634e6
commit 3105093272
2 changed files with 8 additions and 4 deletions

View File

@ -190,7 +190,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
override fun onQueryTextChange(newText: String): Boolean {
if (isSearchOpen) {
getCurrentFragment().onSearchQueryChanged(newText)
getCurrentFragment()?.onSearchQueryChanged(newText)
}
return true
}