Skip to content

Commit

Permalink
Fix quoted links from rendering as clickable.
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-signal authored and greyson-signal committed Feb 14, 2023
1 parent 7f0221c commit 56b35f3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public long getUniqueId(@NonNull MessageDigest digest) {
}

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() {
Expand Down

0 comments on commit 56b35f3

Please sign in to comment.