diff --git a/app/src/main/java/eu/faircode/email/HtmlHelper.java b/app/src/main/java/eu/faircode/email/HtmlHelper.java index 9e91a4d641..6f689b807d 100644 --- a/app/src/main/java/eu/faircode/email/HtmlHelper.java +++ b/app/src/main/java/eu/faircode/email/HtmlHelper.java @@ -52,6 +52,7 @@ public class HtmlHelper implements NodeVisitor { String name = node.nodeName(); if (node instanceof TextNode) { String text = ((TextNode) node).text(); + text = Html.escapeHtml(text); Matcher matcher = pattern.matcher(text); while (matcher.find()) { String ref = matcher.group();