mirror of https://github.com/M66B/FairEmail.git
Disabling Apple-converted-space
This commit is contained in:
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…
Reference in New Issue