mirror of
https://github.com/nextcloud/talk-android
synced 2025-01-20 14:17:46 +00:00
Merge pull request #2648 from nextcloud/bugfix/2647/fixNpeProcessAutocompleteUserList
avoid NPE in processAutocompleteUserList
This commit is contained in:
commit
528deb1fb4
@ -130,13 +130,12 @@ class ContactsController(args: Bundle) :
|
||||
setHasOptionsMenu(true)
|
||||
sharedApplication!!.componentApplication.inject(this)
|
||||
|
||||
existingParticipants = ArrayList()
|
||||
if (args.containsKey(BundleKeys.KEY_NEW_CONVERSATION)) {
|
||||
isNewConversationView = true
|
||||
existingParticipants = ArrayList()
|
||||
} else if (args.containsKey(BundleKeys.KEY_ADD_PARTICIPANTS)) {
|
||||
isAddingParticipantsView = true
|
||||
conversationToken = args.getString(BundleKeys.KEY_TOKEN)
|
||||
existingParticipants = ArrayList()
|
||||
if (args.containsKey(BundleKeys.KEY_EXISTING_PARTICIPANTS)) {
|
||||
existingParticipants = args.getStringArrayList(BundleKeys.KEY_EXISTING_PARTICIPANTS)
|
||||
}
|
||||
@ -497,8 +496,9 @@ class ContactsController(args: Bundle) :
|
||||
val actorTypeConverter = EnumActorTypeConverter()
|
||||
val newUserItemList: MutableList<AbstractFlexibleItem<*>> = ArrayList<AbstractFlexibleItem<*>>()
|
||||
for (autocompleteUser in autocompleteUsersList) {
|
||||
if (autocompleteUser.id != currentUser!!.userId &&
|
||||
!existingParticipants!!.contains(autocompleteUser.id!!)
|
||||
if (autocompleteUser.id != null &&
|
||||
autocompleteUser.id != currentUser!!.userId &&
|
||||
!existingParticipants!!.contains(autocompleteUser.id)
|
||||
) {
|
||||
participant = createParticipant(autocompleteUser, actorTypeConverter)
|
||||
val headerTitle = getHeaderTitle(participant)
|
||||
|
Loading…
Reference in New Issue
Block a user