Skip to content

Commit 19a0486

Browse files
Michael ChanAndroid Git Automerger
authored andcommitted
am a13730f: Merge "Fixed the problem where getEntityAndIncrementCursor would always return "0" for attendeeIdentity & attendeeIdNamespace instead of the actual string." into jb-dev
* commit 'a13730f42449d97ec7206769ccaad9d95bc2924f': Fixed the problem where getEntityAndIncrementCursor would always return "0" for attendeeIdentity & attendeeIdNamespace instead of the actual string.
2 parents 46653c2 + a13730f commit 19a0486

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/java/android/provider/CalendarContract.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1442,9 +1442,9 @@ public Entity getEntityAndIncrementCursor(Cursor cursor) throws RemoteException
14421442
attendeeValues.put(Attendees.ATTENDEE_STATUS,
14431443
subCursor.getInt(COLUMN_ATTENDEE_STATUS));
14441444
attendeeValues.put(Attendees.ATTENDEE_IDENTITY,
1445-
subCursor.getInt(COLUMN_ATTENDEE_IDENTITY));
1445+
subCursor.getString(COLUMN_ATTENDEE_IDENTITY));
14461446
attendeeValues.put(Attendees.ATTENDEE_ID_NAMESPACE,
1447-
subCursor.getInt(COLUMN_ATTENDEE_ID_NAMESPACE));
1447+
subCursor.getString(COLUMN_ATTENDEE_ID_NAMESPACE));
14481448
entity.addSubValue(Attendees.CONTENT_URI, attendeeValues);
14491449
}
14501450
} finally {

0 commit comments

Comments
 (0)