Disable mention clicks in multi-select mode.

master
Greyson Parrelli 2020-10-08 14:09:44 -04:00
parent 8965388d05
commit f642de9c41
1 changed files with 1 additions and 1 deletions

View File

@ -1521,7 +1521,7 @@ public class ConversationItem extends LinearLayout implements BindableConversati
@Override
public void onClick(@NonNull View widget) {
if (eventListener != null) {
if (eventListener != null && batchSelected.isEmpty()) {
VibrateUtil.vibrateTick(context);
eventListener.onGroupMemberClicked(mentionedRecipientId, conversationRecipient.get().requireGroupId());
}