mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-23 18:15:22 +00:00
Fix possible NPE.
This commit is contained in:
parent
fa6da1902f
commit
60c7fb0056
@ -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…
Reference in New Issue
Block a user