From aaa17fb00ee5ef75cdbf65c79732cfa208a64c11 Mon Sep 17 00:00:00 2001 From: M66B Date: Fri, 10 Nov 2023 18:46:04 +0100 Subject: [PATCH] Skip composing spans on convert to HTML Needed for LanguageTool marker --- app/src/main/java/eu/faircode/email/HtmlEx.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/src/main/java/eu/faircode/email/HtmlEx.java b/app/src/main/java/eu/faircode/email/HtmlEx.java index 0eef9e3003..e23e715cc2 100644 --- a/app/src/main/java/eu/faircode/email/HtmlEx.java +++ b/app/src/main/java/eu/faircode/email/HtmlEx.java @@ -381,6 +381,9 @@ public class HtmlEx { CharacterStyle[] style = getSpans(text, i, next, CharacterStyle.class); for (int j = 0; j < style.length; j++) { + int flags = text.getSpanFlags(style[j]); + if ((flags & Spanned.SPAN_COMPOSING) != 0) + continue; if (style[j] instanceof StyleSpan) { int s = ((StyleSpan) style[j]).getStyle(); @@ -481,6 +484,9 @@ public class HtmlEx { withinStyle(out, text, i, next); for (int j = style.length - 1; j >= 0; j--) { + int flags = text.getSpanFlags(style[j]); + if ((flags & Spanned.SPAN_COMPOSING) != 0) + continue; if (style[j] instanceof BackgroundColorSpan && !(style[j] instanceof StyleHelper.MarkSpan)) { out.append(""); }