Auto add calendar events without method

pull/211/head
M66B 3 years ago
parent f34dd3dfda
commit ee3475e998

@ -3945,16 +3945,13 @@ public class MessageHelper {
ICalendar icalendar = Biweekly.parse(file).first(); ICalendar icalendar = Biweekly.parse(file).first();
Method method = icalendar.getMethod(); Method method = icalendar.getMethod();
if (method == null)
return;
VEvent event = icalendar.getEvents().get(0); VEvent event = icalendar.getEvents().get(0);
// https://www.rfc-editor.org/rfc/rfc5546#section-3.2 // 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); CalendarHelper.delete(context, event, message);
if (method.isRequest()) { if (method == null || method.isRequest()) {
String selectedAccount; String selectedAccount;
String selectedName; String selectedName;
try { try {

Loading…
Cancel
Save