mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-30 21:58:52 +02:00
@@ -4470,17 +4470,13 @@ public class MessageHelper {
|
||||
String recipient = ((InternetAddress) address).getAddress();
|
||||
if (!TextUtils.isEmpty(email) && email.equalsIgnoreCase(recipient)) {
|
||||
ParticipationStatus pstatus = attendee.getParticipationStatus();
|
||||
if (ParticipationStatus.ACCEPTED.equals(pstatus)) {
|
||||
if (ParticipationStatus.ACCEPTED.equals(pstatus))
|
||||
status = CalendarContract.Events.STATUS_CONFIRMED;
|
||||
break;
|
||||
} else if (ParticipationStatus.DECLINED.equals(pstatus)) {
|
||||
else if (ParticipationStatus.DECLINED.equals(pstatus))
|
||||
status = CalendarContract.Events.STATUS_CANCELED;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (status != CalendarContract.Events.STATUS_TENTATIVE)
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user