mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Made reply text HTML compliant.
This commit is contained in:
parent
e443bd92c5
commit
cbbb899565
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ public class SetupCommentSectionTask extends AsyncTask<Void, Void, Void> {
|
|||
Reply reply = Reply.fromCursor(replies);
|
||||
View replyView = inflater.inflate(R.layout.include_reply, null);
|
||||
TextView replyText = (TextView) replyView.findViewById(R.id.reply_text);
|
||||
replyText.setText(reply.text);
|
||||
replyText.setText(Html.fromHtml(reply.text));
|
||||
ImageView replyImage = (ImageView) replyView.findViewById(R.id.reply_user_image);
|
||||
|
||||
Cursor replyCursor = resolver.query(FeedProvider.USERS_URI, null, DatabaseConstants.USER_USERID + " IN (?)", new String[] { reply.userId }, null);
|
||||
|
|
Loading…
Add table
Reference in a new issue