commit | c055074f0e2417108d1161550c609fe4dc8b4533 | [log] [tgz] |
---|---|---|
author | Dmitri Plotnikov <dplotnikov@google.com> | Tue Sep 29 16:02:54 2009 -0700 |
committer | Dmitri Plotnikov <dplotnikov@google.com> | Tue Sep 29 16:02:59 2009 -0700 |
tree | d3df24256d06c893249578fbd94fc454891610b4 | |
parent | d0610ca54e4f9df59ac652c206c2daaba1b2d3dd [diff] |
[Issue 2155068] Fixing the selection clause for legacy API request in EditContactActivity Change-Id: Iefb766ce73baf707cfd74f66627cf8fc4fb70249
diff --git a/src/com/android/contacts/ui/EditContactActivity.java b/src/com/android/contacts/ui/EditContactActivity.java index 14f80b9..238c3b3 100644 --- a/src/com/android/contacts/ui/EditContactActivity.java +++ b/src/com/android/contacts/ui/EditContactActivity.java
@@ -181,7 +181,7 @@ } } else if (android.provider.Contacts.AUTHORITY.equals(authority)) { final long rawContactId = ContentUris.parseId(data); - selection = RawContacts._ID + "=" + rawContactId; + selection = Data.RAW_CONTACT_ID + "=" + rawContactId; } target.mQuerySelection = selection;