mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-17 13:22:16 -05:00
We forgot to HTML markup the body of the message in cases where we
weren't quoting any text
This commit is contained in:
parent
378002c62a
commit
2f48309f82
@ -913,12 +913,14 @@ public class MessageCompose extends K9Activity implements OnClickListener, OnFoc
|
||||
if (!isDraft && !mQuotedTextMode.equals(QuotedTextMode.SHOW)) {
|
||||
discardQuotedText = true;
|
||||
}
|
||||
|
||||
|
||||
if (discardQuotedText) {
|
||||
if (!isDraft) {
|
||||
text = appendSignature(text);
|
||||
}
|
||||
|
||||
text = HtmlConverter.textToHtmlFragment(text);
|
||||
// Build the body.
|
||||
TextBody body = new TextBody(text);
|
||||
body.setComposedMessageLength(text.length());
|
||||
|
Loading…
Reference in New Issue
Block a user