hide added groups/circles

Signed-off-by: sowjanyakch <sowjanya.kch@gmail.com>
This commit is contained in:
sowjanyakch 2025-05-28 22:30:37 +02:00 committed by Marcel Hibbe
parent f0cbe5113f
commit 6d4e5d2774
No known key found for this signature in database
GPG Key ID: C793F8B59F43CE7B

View File

@ -859,9 +859,7 @@ class ConversationInfoActivity :
private fun selectParticipantsToAdd() {
val bundle = Bundle()
val existingParticipants = ArrayList<AutocompleteUser>()
for (userItem in userItems) {
if (userItem.model.calculatedActorType == USERS) {
val user = AutocompleteUser(
userItem.model.calculatedActorId!!,
userItem.model.displayName,
@ -869,7 +867,6 @@ class ConversationInfoActivity :
)
existingParticipants.add(user)
}
}
bundle.putBoolean(BundleKeys.KEY_ADD_PARTICIPANTS, true)
bundle.putParcelableArrayList("selectedParticipants", existingParticipants)