Fix quoted links from rendering as clickable.

This commit is contained in:
Cody Henthorne
2023-02-06 17:04:21 -05:00
committed by Greyson Parrelli
parent 7f0221c5c6
commit 56b35f3767

View File

@@ -98,7 +98,7 @@ public class ConversationMessage {
}
public @NonNull SpannableString getDisplayBody(Context context) {
return (body != null) ? body : messageRecord.getDisplayBody(context);
return (body != null) ? new SpannableString(body) : messageRecord.getDisplayBody(context);
}
public boolean hasStyleLinks() {