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

Commit f6a40d4c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "Contacts: Fix pop up "no contacts" after clear all call log"

parents d7f809ec bb9964cd
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -1228,11 +1228,15 @@ public class MultiPickContactActivity extends ListActivity implements
        protected void onQueryComplete(int token, Object cookie, Cursor cursor) {
            mAdapter.changeCursor(cursor);
            if (cursor == null || cursor.getCount() == 0) {
                if (isPickCall()) {
                    log("no call found");
                } else {
                    Toast.makeText(MultiPickContactActivity.this,
                            R.string.listFoundAllContactsZero, Toast.LENGTH_SHORT).show();
                }
            }
        }
    }

    private final class ContactItemCache {
        long id;