1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-23 14:41:08 +00:00

Auto add calendar events without method

This commit is contained in:
M66B 2023-01-11 10:27:06 +01:00
parent f34dd3dfda
commit ee3475e998

View file

@ -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 {