Fixed the problem where getEntityAndIncrementCursor would always return "0" for attendeeIdentity & attendeeIdNamespace instead of the actual string.

Bug: 6798688
Change-Id: Ia3b6ee33110ecc8035c24d6340593160748849fd
This commit is contained in:
Michael Chan
2012-07-13 14:10:40 -07:00
parent 82c815500e
commit a07ea5da07

View File

@@ -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 {