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

Commit ecc0897c 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

am: b97d97e8

Change-Id: I1d58bd4ba351e59a3ba5a39593e9265fd1cf612f
parents 4d786946 b97d97e8
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;
                }