Add polish to groups v2 creation flow.

This commit is contained in:
Alex Hart
2020-05-26 16:25:03 -03:00
committed by Greyson Parrelli
parent 8947b82034
commit 558a8e4a14
4 changed files with 22 additions and 4 deletions

View File

@@ -1451,7 +1451,7 @@ public class RecipientDatabase extends Database {
args = new String[] { "0", String.valueOf(RegisteredState.REGISTERED.getId()), "1" };
} else {
selection += " AND " + ID + " != ?";
args = new String[] { "0", String.valueOf(RegisteredState.REGISTERED.getId()), Recipient.self().getId().serialize() };
args = new String[] { "0", String.valueOf(RegisteredState.REGISTERED.getId()), "1", Recipient.self().getId().serialize() };
}
String orderBy = SORT_NAME + ", " + SYSTEM_DISPLAY_NAME + ", " + SEARCH_PROFILE_NAME + ", " + USERNAME + ", " + PHONE;