I have deleted a change in 0323af0
.
This commit is contained in:
parent
0a09060ed7
commit
3a02bfb0a9
1 changed files with 5 additions and 3 deletions
|
@ -1352,7 +1352,7 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||
* original message.
|
||||
*/
|
||||
private TextBody buildText(boolean isDraft, SimpleMessageFormat messageFormat) {
|
||||
String messageText = mMessageContentView.getText().toString();
|
||||
String messageText = mMessageContentView.getCharacters();
|
||||
|
||||
TextBodyBuilder textBodyBuilder = new TextBodyBuilder(messageText);
|
||||
|
||||
|
@ -1374,9 +1374,11 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||
textBodyBuilder.setQuotedTextHtml(mQuotedHtmlContent);
|
||||
textBodyBuilder.setReplyAfterQuote(isReplyAfterQuote);
|
||||
}
|
||||
if (messageFormat == SimpleMessageFormat.TEXT) {
|
||||
|
||||
String quotedText = mQuotedText.getCharacters();
|
||||
if (messageFormat == SimpleMessageFormat.TEXT && quotedText.length() > 0) {
|
||||
textBodyBuilder.setIncludeQuotedText(true);
|
||||
textBodyBuilder.setQuotedText(mQuotedText.getText().toString());
|
||||
textBodyBuilder.setQuotedText(quotedText);
|
||||
textBodyBuilder.setReplyAfterQuote(isReplyAfterQuote);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue