mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-20 08:39:22 +01:00
Fix quoted links from rendering as clickable.
This commit is contained in:
committed by
Greyson Parrelli
parent
7f0221c5c6
commit
56b35f3767
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user