mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-04 08:08:16 +02:00
Auto add calendar events without method
This commit is contained in:
@@ -3945,16 +3945,13 @@ public class MessageHelper {
|
||||
ICalendar icalendar = Biweekly.parse(file).first();
|
||||
|
||||
Method method = icalendar.getMethod();
|
||||
if (method == null)
|
||||
return;
|
||||
|
||||
VEvent event = icalendar.getEvents().get(0);
|
||||
|
||||
// https://www.rfc-editor.org/rfc/rfc5546#section-3.2
|
||||
if (method.isRequest() || method.isCancel())
|
||||
if (method == null || method.isRequest() || method.isCancel())
|
||||
CalendarHelper.delete(context, event, message);
|
||||
|
||||
if (method.isRequest()) {
|
||||
if (method == null || method.isRequest()) {
|
||||
String selectedAccount;
|
||||
String selectedName;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user