Fix possible NPE.
This commit is contained in:
parent
fa6da1902f
commit
60c7fb0056
1 changed files with 3 additions and 1 deletions
|
@ -745,7 +745,9 @@ public class ConversationFragment extends Fragment
|
|||
}
|
||||
|
||||
public void onSearchQueryUpdated(@Nullable String query) {
|
||||
getListAdapter().onSearchQueryUpdated(query);
|
||||
if (getListAdapter() != null) {
|
||||
getListAdapter().onSearchQueryUpdated(query);
|
||||
}
|
||||
}
|
||||
|
||||
public void jumpToMessage(@NonNull Address author, long timestamp, @Nullable Runnable onMessageNotFound) {
|
||||
|
|
Loading…
Add table
Reference in a new issue