mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Allow default CC/BCC only
This commit is contained in:
parent
2deb6e18fd
commit
09338dc2dc
1 changed files with 3 additions and 2 deletions
|
@ -4064,8 +4064,9 @@ public class FragmentCompose extends FragmentBase {
|
||||||
if (draft.identity == null)
|
if (draft.identity == null)
|
||||||
throw new IllegalArgumentException(context.getString(R.string.title_from_missing));
|
throw new IllegalArgumentException(context.getString(R.string.title_from_missing));
|
||||||
|
|
||||||
if (draft.to == null && draft.cc == null && draft.bcc == null)
|
if (draft.to == null && draft.cc == null && draft.bcc == null &&
|
||||||
args.putBoolean("remind_to", true);
|
(identity == null || (identity.cc == null && identity.bcc == null)))
|
||||||
|
args.putBoolean("remind_to", true);
|
||||||
|
|
||||||
if (TextUtils.isEmpty(draft.extra) &&
|
if (TextUtils.isEmpty(draft.extra) &&
|
||||||
identity != null && identity.sender_extra)
|
identity != null && identity.sender_extra)
|
||||||
|
|
Loading…
Reference in a new issue