Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a13730f4 authored by Michael Chan's avatar Michael Chan Committed by Android (Google) Code Review
Browse files

Merge "Fixed the problem where getEntityAndIncrementCursor would always return...

Merge "Fixed the problem where getEntityAndIncrementCursor would always return "0" for attendeeIdentity & attendeeIdNamespace instead of the actual string." into jb-dev
parents bc8bab89 a07ea5da
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1442,9 +1442,9 @@ public final class CalendarContract {
                        attendeeValues.put(Attendees.ATTENDEE_STATUS,
                                subCursor.getInt(COLUMN_ATTENDEE_STATUS));
                        attendeeValues.put(Attendees.ATTENDEE_IDENTITY,
                                subCursor.getInt(COLUMN_ATTENDEE_IDENTITY));
                                subCursor.getString(COLUMN_ATTENDEE_IDENTITY));
                        attendeeValues.put(Attendees.ATTENDEE_ID_NAMESPACE,
                                subCursor.getInt(COLUMN_ATTENDEE_ID_NAMESPACE));
                                subCursor.getString(COLUMN_ATTENDEE_ID_NAMESPACE));
                        entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
                    }
                } finally {