Fix message details crash on recipient tap.

This commit is contained in:
Michelle Tang
2026-03-02 11:58:35 -05:00
committed by Greyson Parrelli
parent ca37a884fd
commit 4261ed39dc

View File

@@ -2948,7 +2948,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
@Override
public void onClick(@NonNull View widget) {
if (eventListener != null && batchSelected.isEmpty()) {
if (eventListener != null && batchSelected.isEmpty() && conversationRecipient.get().getGroupId().isPresent()) {
VibrateUtil.vibrateTick(context);
eventListener.onGroupMemberClicked(recipientId, conversationRecipient.get().requireGroupId());
}