Refactoring

This commit is contained in:
M66B
2024-01-07 11:02:45 +01:00
parent cc0e9434be
commit d42249bbd5
2 changed files with 8 additions and 7 deletions

View File

@@ -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;