mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-24 07:01:05 +00:00
Fixed html comments
This commit is contained in:
parent
75b1a7cbf0
commit
a1aee23488
1 changed files with 1 additions and 0 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue