Fix possible NPE.

pull/1/head
Greyson Parrelli 7 years ago
parent fa6da1902f
commit 60c7fb0056

@ -745,8 +745,10 @@ public class ConversationFragment extends Fragment
}
public void onSearchQueryUpdated(@Nullable String query) {
if (getListAdapter() != null) {
getListAdapter().onSearchQueryUpdated(query);
}
}
public void jumpToMessage(@NonNull Address author, long timestamp, @Nullable Runnable onMessageNotFound) {
SimpleTask.run(getLifecycle(), () -> {

Loading…
Cancel
Save