mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 12:44:42 +00:00
parent
f1fba422ad
commit
63f1b377d9
1 changed files with 3 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue