Disable autolink for composer

This commit is contained in:
M66B
2019-11-15 08:43:35 +01:00
parent 12f0b169a6
commit 44dd58d0d1
5 changed files with 61 additions and 59 deletions

View File

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