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

Commit b97d97e8 authored by yuichiro fujiwara's avatar yuichiro fujiwara Committed by android-build-merger
Browse files

Merge "Fixed the deleted label exists on phone contact view list" am: d385e5b7

am: f38bd912

Change-Id: If7eb5d2f0f3ca0d200c027b5a501b182c4ae65c7
parents 0a6398ef f38bd912
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -171,7 +171,8 @@ public class CustomContactListFilterActivity extends Activity implements
                if (account.dataSet != null) {
                    groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
                }
                final Cursor cursor = resolver.query(groupsUri.build(), null, null, null, null);
                final Cursor cursor = resolver.query(groupsUri.build(), null,
                        Groups.DELETED + "=0", null, null);
                if (cursor == null) {
                    continue;
                }