do not disable markdown in message selection mode

This commit is contained in:
adbenitez
2021-04-18 02:59:15 -04:00
parent 8b948a220e
commit 539c03bf08
@@ -394,13 +394,11 @@ public class ConversationItem extends LinearLayout
bodyText.setVisibility(View.GONE);
}
else {
Spannable spannable = (Spannable)markwon.toMarkdown(text);
if (batchSelected.isEmpty()) {
Spannable spannable = (Spannable)markwon.toMarkdown(text);
spannable = EmojiTextView.linkify(spannable);
bodyText.setText(spannable);
} else {
bodyText.setText(text);
}
bodyText.setText(spannable);
bodyText.setVisibility(View.VISIBLE);
}