Added option to send plain text by default

This commit is contained in:
M66B
2019-06-14 17:58:09 +02:00
parent 86c11ad784
commit 56858282b9
4 changed files with 31 additions and 2 deletions

View File

@@ -1952,6 +1952,9 @@ public class FragmentCompose extends FragmentBase {
File ics = (File) args.getSerializable("ics");
long answer = args.getLong("answer", -1);
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
boolean plain_only = prefs.getBoolean("plain_only", false);
Log.i("Load draft action=" + action + " id=" + id + " reference=" + reference);
EntityMessage draft;
@@ -2102,6 +2105,9 @@ public class FragmentCompose extends FragmentBase {
EntityOperation.queue(context, ref, EntityOperation.SEEN, true);
}
if (plain_only)
draft.plain_only = true;
// Select identity matching from address
int icount = 0;
EntityIdentity first = null;