Convert body in action loader

pull/203/head
M66B 4 years ago
parent e37505efbc
commit eb44e41f7b

@ -3707,7 +3707,7 @@ public class FragmentCompose extends FragmentBase {
args.putString("cc", etCc.getText().toString().trim()); args.putString("cc", etCc.getText().toString().trim());
args.putString("bcc", etBcc.getText().toString().trim()); args.putString("bcc", etBcc.getText().toString().trim());
args.putString("subject", etSubject.getText().toString().trim()); args.putString("subject", etSubject.getText().toString().trim());
args.putString("body", HtmlHelper.toHtml(etBody.getText(), getContext())); args.putCharSequence("spanned", etBody.getText());
args.putBoolean("signature", cbSignature.isChecked()); args.putBoolean("signature", cbSignature.isChecked());
args.putBoolean("empty", isEmpty()); args.putBoolean("empty", isEmpty());
args.putBoolean("notext", notext); args.putBoolean("notext", notext);
@ -5029,13 +5029,14 @@ public class FragmentCompose extends FragmentBase {
String cc = args.getString("cc"); String cc = args.getString("cc");
String bcc = args.getString("bcc"); String bcc = args.getString("bcc");
String subject = args.getString("subject"); String subject = args.getString("subject");
String body = args.getString("body"); Spanned spanned = (Spanned) args.getCharSequence("spanned");
boolean signature = args.getBoolean("signature"); boolean signature = args.getBoolean("signature");
boolean empty = args.getBoolean("empty"); boolean empty = args.getBoolean("empty");
boolean notext = args.getBoolean("notext"); boolean notext = args.getBoolean("notext");
Bundle extras = args.getBundle("extras"); Bundle extras = args.getBundle("extras");
boolean dirty = false; boolean dirty = false;
String body = HtmlHelper.toHtml(spanned, context);
EntityMessage draft; EntityMessage draft;
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context); SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);

Loading…
Cancel
Save