Optionally show text colors

This commit is contained in:
M66B
2019-09-23 20:13:38 +02:00
parent 7b183675c3
commit 214774fa09
8 changed files with 65 additions and 32 deletions

View File

@@ -139,7 +139,7 @@ public class ActivityEML extends ActivityBase {
result.html = parts.getHtml(context);
if (result.html != null) {
result.body = HtmlHelper.fromHtml(HtmlHelper.sanitize(context, result.html, false));
result.body = HtmlHelper.fromHtml(HtmlHelper.sanitize(context, result.html, false, false));
if (result.html.length() > 100 * 1024)
result.html = null;
}