in TAdvCustomGCalendar

please add CREATOR attributes

TAdvCustomGCalendar.ParseCalendarItem
....

jp := jo.Get('creator');
if Assigned(jp) then
begin
ffo := GetJSONValue(jo, 'creator') as TJSONObject;
jp := ffo.Get('email');
if Assigned(jp) then
begin
s := GetJSONProp(ffo, 'email');
di.Fcreator := s;
end;
end;

FCreator: string
Creator proprerty only readonly

bye
carlo