From 2f48309f82e8a14cb5f52697801e70b8ad7eeb0f Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Mon, 20 Jun 2011 18:26:19 -0700 Subject: [PATCH] We forgot to HTML markup the body of the message in cases where we weren't quoting any text --- src/com/fsck/k9/activity/MessageCompose.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/com/fsck/k9/activity/MessageCompose.java b/src/com/fsck/k9/activity/MessageCompose.java index 3d51fed74..cf3275e1c 100644 --- a/src/com/fsck/k9/activity/MessageCompose.java +++ b/src/com/fsck/k9/activity/MessageCompose.java @@ -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());