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

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

Change-Id: I8e4a2907b4dc2e3c651a56ede565f8c58882ab80
parents beba5ed5 d385e5b7
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;
                }