@@ -259,7 +259,9 @@ public class UIHelper {
for (final android.text.style.QuoteSpan quote : Lists.reverse(Lists.newArrayList(styledBody.getSpans(0, styledBody.length(), android.text.style.QuoteSpan.class)))) {
int start = styledBody.getSpanStart(quote);
int end = styledBody.getSpanEnd(quote);
+ if (start == 0 && end == styledBody.length()) continue;
styledBody.delete(start, end);
+ styledBody.removeSpan(quote);
}
if (!processMarkup) return new Pair<>(styledBody, false);