Disabling Apple-converted-space

pull/214/head
M66B 11 months ago
parent de4561fac6
commit 2d07650db8

@ -3076,6 +3076,7 @@ public class HtmlHelper {
static void cleanup(Document d) {
// https://www.chromestatus.com/feature/5756335865987072
// Some messages contain 100 thousands of Apple spaces
if (false)
for (Element aspace : d.select(".Apple-converted-space")) {
Node next = aspace.nextSibling();
if (next instanceof TextNode) {
@ -3084,6 +3085,7 @@ public class HtmlHelper {
aspace.remove();
} else
aspace.replaceWith(new TextNode(" "));
Log.i("Replaced Apple-converted-space");
}
}

Loading…
Cancel
Save