mirror of
https://github.com/oxen-io/session-android.git
synced 2025-06-09 11:18:35 +00:00
Fix NullPointerException when trying to launch InviteActivity.
This commit is contained in:
parent
5545daf992
commit
1c814141a2
@ -74,6 +74,7 @@ import org.thoughtcrime.securesms.util.views.SimpleProgressDialog;
|
|||||||
import org.whispersystems.libsignal.util.guava.Optional;
|
import org.whispersystems.libsignal.util.guava.Optional;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -188,10 +189,18 @@ public final class ContactSelectionListFragment extends Fragment
|
|||||||
}
|
}
|
||||||
|
|
||||||
public @NonNull List<SelectedContact> getSelectedContacts() {
|
public @NonNull List<SelectedContact> getSelectedContacts() {
|
||||||
|
if (cursorRecyclerViewAdapter == null) {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
return cursorRecyclerViewAdapter.getSelectedContacts();
|
return cursorRecyclerViewAdapter.getSelectedContacts();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getSelectedContactsCount() {
|
public int getSelectedContactsCount() {
|
||||||
|
if (cursorRecyclerViewAdapter == null) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
return cursorRecyclerViewAdapter.getSelectedContactsCount();
|
return cursorRecyclerViewAdapter.getSelectedContactsCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user