remove html method from changelog section

This commit is contained in:
dkanada 2018-12-14 02:48:22 +09:00
parent b0ee5b120c
commit 2b512d96c5

View File

@ -504,7 +504,7 @@ public class AppDetailsRecyclerViewAdapter
sbWhatsNew.append(whatsNewView.getContext().getString(R.string.details_new_in_version,
suggestedApk.versionName).toUpperCase(locale));
sbWhatsNew.append("\n\n");
sbWhatsNew.append(trimTrailingNewlines(Html.fromHtml(app.whatsNew)));
sbWhatsNew.append(app.whatsNew);
whatsNewView.setText(sbWhatsNew);
whatsNewView.setVisibility(View.VISIBLE);