mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-29 11:15:51 +00:00
Select identity for debug info
This commit is contained in:
parent
8fe8def583
commit
380abd5298
1 changed files with 11 additions and 0 deletions
|
@ -309,9 +309,20 @@ public class Helper {
|
||||||
if (drafts == null)
|
if (drafts == null)
|
||||||
throw new IllegalArgumentException(context.getString(R.string.title_no_primary_drafts));
|
throw new IllegalArgumentException(context.getString(R.string.title_no_primary_drafts));
|
||||||
|
|
||||||
|
List<EntityIdentity> identities = db.identity().getIdentities(drafts.account);
|
||||||
|
EntityIdentity primary = null;
|
||||||
|
for (EntityIdentity identity : identities) {
|
||||||
|
if (identity.primary) {
|
||||||
|
primary = identity;
|
||||||
|
break;
|
||||||
|
} else if (primary == null)
|
||||||
|
primary = identity;
|
||||||
|
}
|
||||||
|
|
||||||
draft = new EntityMessage();
|
draft = new EntityMessage();
|
||||||
draft.account = drafts.account;
|
draft.account = drafts.account;
|
||||||
draft.folder = drafts.id;
|
draft.folder = drafts.id;
|
||||||
|
draft.identity = (primary == null ? null : primary.id);
|
||||||
draft.msgid = EntityMessage.generateMessageId();
|
draft.msgid = EntityMessage.generateMessageId();
|
||||||
draft.to = new Address[]{Helper.myAddress()};
|
draft.to = new Address[]{Helper.myAddress()};
|
||||||
draft.subject = context.getString(R.string.app_name) + " " + BuildConfig.VERSION_NAME + " debug info";
|
draft.subject = context.getString(R.string.app_name) + " " + BuildConfig.VERSION_NAME + " debug info";
|
||||||
|
|
Loading…
Reference in a new issue