1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Revert "Process event updates from other apps (2)"

This reverts commit c19b5e1ddb.
This commit is contained in:
M66B 2023-10-26 12:52:59 +02:00
parent c72d2cf0ff
commit a35d7a084e

View file

@ -4446,7 +4446,9 @@ public class MessageHelper {
// https://www.rfc-editor.org/rfc/rfc5546#section-3.2
if (method != null && method.isCancel())
CalendarHelper.delete(context, event, message);
else if (method == null || method.isRequest() || method.isReply()) {
else if (method != null && method.isReply())
CalendarHelper.update(context, event, message);
else if (method == null || method.isRequest()) {
String selectedAccount;
String selectedName;
try {