mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Refactoring
This commit is contained in:
@@ -7097,13 +7097,7 @@ public class FragmentCompose extends FragmentBase {
|
||||
if (draft.bcc != null)
|
||||
recipients.addAll(Arrays.asList(draft.bcc));
|
||||
|
||||
boolean noreply = false;
|
||||
for (Address recipient : recipients)
|
||||
if (MessageHelper.isNoReply(recipient)) {
|
||||
noreply = true;
|
||||
break;
|
||||
}
|
||||
args.putBoolean("remind_noreply", noreply);
|
||||
args.putBoolean("remind_noreply", MessageHelper.isNoReply(recipients));
|
||||
|
||||
if (identity != null && !TextUtils.isEmpty(identity.internal)) {
|
||||
boolean external = false;
|
||||
|
||||
Reference in New Issue
Block a user