mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-13 04:25:47 +02:00
Insert attendee name only
This commit is contained in:
@@ -334,9 +334,10 @@ public class CalendarHelper {
|
||||
|
||||
ContentValues avalues = new ContentValues();
|
||||
|
||||
if (!TextUtils.isEmpty(email))
|
||||
avalues.put(CalendarContract.Attendees.ATTENDEE_EMAIL, email);
|
||||
|
||||
//if (!TextUtils.isEmpty(email))
|
||||
// avalues.put(CalendarContract.Attendees.ATTENDEE_EMAIL, email);
|
||||
if (TextUtils.isEmpty(name))
|
||||
name = email;
|
||||
if (!TextUtils.isEmpty(name))
|
||||
avalues.put(CalendarContract.Attendees.ATTENDEE_NAME, name);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user