Added organizer to auto events

This commit is contained in:
M66B 2023-03-09 09:38:59 +01:00
parent f04db2bc00
commit 1bfde47e31
1 changed files with 6 additions and 0 deletions

View File

@ -45,6 +45,9 @@ import biweekly.util.ICalDate;
public class CalendarHelper {
static void insert(Context context, ICalendar icalendar, VEvent event,
String selectedAccount, String selectedName, EntityMessage message) {
String organizer = (event.getOrganizer() == null ? null : event.getOrganizer().getEmail());
String summary = (event.getSummary() == null ? null : event.getSummary().getValue());
String description = (event.getDescription() == null ? null : event.getDescription().getValue());
String location = (event.getLocation() == null ? null : event.getLocation().getValue());
@ -90,6 +93,8 @@ public class CalendarHelper {
values.put(CalendarContract.Events.CALENDAR_ID, calId);
if (!TextUtils.isEmpty(uid))
values.put(CalendarContract.Events.UID_2445, uid);
if (!TextUtils.isEmpty(organizer))
values.put(CalendarContract.Events.ORGANIZER, organizer);
values.put(CalendarContract.Events.EVENT_TIMEZONE, TimeZone.getDefault().getID());
values.put(CalendarContract.Events.DTSTART, start.getTime());
values.put(CalendarContract.Events.DTEND, end.getTime());
@ -108,6 +113,7 @@ public class CalendarHelper {
EntityLog.log(context, EntityLog.Type.General, message, "Inserted event" +
" id=" + calId + ":" + eventId +
" uid=" + uid +
" organizer=" + organizer +
" tz=" + TimeZone.getDefault().getID() +
" start=" + new Date(start.getTime()) +
" end=" + new Date(end.getTime()) +