mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
Use cc/bcc as recipients for attendees too
This commit is contained in:
parent
cb94d4d6ca
commit
01e540694f
1 changed files with 10 additions and 3 deletions
|
@ -4454,12 +4454,19 @@ public class MessageHelper {
|
|||
else if (method == null || method.isRequest() || method.isReply()) {
|
||||
int status = CalendarContract.Events.STATUS_TENTATIVE;
|
||||
if (method != null && method.isReply()) {
|
||||
List<Address> recipients = new ArrayList<>();
|
||||
if (message.to != null)
|
||||
recipients.addAll(Arrays.asList(message.to));
|
||||
if (message.cc != null)
|
||||
recipients.addAll(Arrays.asList(message.cc));
|
||||
if (message.bcc != null)
|
||||
recipients.addAll(Arrays.asList(message.bcc));
|
||||
List<Attendee> attendees = event.getAttendees();
|
||||
if (attendees != null && message.to != null)
|
||||
if (attendees != null)
|
||||
for (Attendee attendee : attendees) {
|
||||
String email = attendee.getEmail();
|
||||
for (Address to : message.to) {
|
||||
String recipient = ((InternetAddress) to).getAddress();
|
||||
for (Address address : recipients) {
|
||||
String recipient = ((InternetAddress) address).getAddress();
|
||||
if (!TextUtils.isEmpty(email) && email.equalsIgnoreCase(recipient)) {
|
||||
ParticipationStatus pstatus = attendee.getParticipationStatus();
|
||||
if (ParticipationStatus.ACCEPTED.equals(pstatus))
|
||||
|
|
Loading…
Reference in a new issue