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

Commit c055074f authored by Dmitri Plotnikov's avatar Dmitri Plotnikov
Browse files

[Issue 2155068] Fixing the selection clause for legacy API request in EditContactActivity

Change-Id: Iefb766ce73baf707cfd74f66627cf8fc4fb70249
parent d0610ca5
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -181,7 +181,7 @@ public final class EditContactActivity extends Activity implements View.OnClickL
                }
            } 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;