mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 13:47:05 +02:00
Revert "Use cc/bcc as recipients for attendees too"
This reverts commit 01e540694f.
This commit is contained in:
@@ -4454,19 +4454,12 @@ 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)
|
||||
if (attendees != null && message.to != null)
|
||||
for (Attendee attendee : attendees) {
|
||||
String email = attendee.getEmail();
|
||||
for (Address address : recipients) {
|
||||
String recipient = ((InternetAddress) address).getAddress();
|
||||
for (Address to : message.to) {
|
||||
String recipient = ((InternetAddress) to).getAddress();
|
||||
if (!TextUtils.isEmpty(email) && email.equalsIgnoreCase(recipient)) {
|
||||
ParticipationStatus pstatus = attendee.getParticipationStatus();
|
||||
if (ParticipationStatus.ACCEPTED.equals(pstatus))
|
||||
|
||||
Reference in New Issue
Block a user