Merge branch 'fix/group_chat_participants_list_hidden' into 'release/6.2'

Fixed group conversation participants list not expandable if not admin

See merge request BC/public/linphone-android!2487
This commit is contained in:
Sylvain Berfini 2026-04-13 13:03:50 +00:00
commit 9e683bf90c

View file

@ -365,7 +365,7 @@
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:visibility="@{!viewModel.expandParticipants || !viewModel.isMyselfAdmin || !viewModel.isGroup || viewModel.isReadOnly ? View.GONE : View.VISIBLE, default=gone}"
android:visibility="@{viewModel.expandParticipants && viewModel.isGroup && !viewModel.isReadOnly ? View.VISIBLE : View.GONE, default=gone}"
android:background="@drawable/shape_squircle_white_background"
app:layout_constraintWidth_max="@dimen/section_max_width"
app:layout_constraintTop_toBottomOf="@id/participants_label"