pull/174/head
M66B 5 years ago
parent 8913b00652
commit 5870856402

@ -1198,11 +1198,13 @@ public class HtmlHelper {
}
static void cleanup(Document d) {
// https://www.chromestatus.com/feature/5756335865987072
// Some messages contain 100 thousands of Apple spaces
for (Element aspace : d.select(".Apple-converted-space")) {
Node next = aspace.nextSibling();
if (next instanceof TextNode) {
TextNode tnode = (TextNode) next;
tnode.text(tnode.text() + " ");
tnode.text(" " + tnode.text());
aspace.remove();
} else
aspace.replaceWith(new TextNode(" "));

Loading…
Cancel
Save