Fixed avatar for manually entered addresses in smart address book
This commit is contained in:
parent
a895fde7eb
commit
75a4e113d1
1 changed files with 3 additions and 0 deletions
|
@ -145,6 +145,9 @@ public class SearchContactsListAdapter extends RecyclerView.Adapter<SearchContac
|
|||
}
|
||||
|
||||
if (c != null) {
|
||||
if (c.getFullName() == null && c.getFirstName() == null && c.getLastName() == null) {
|
||||
c.setFullName(holder.name.getText().toString());
|
||||
}
|
||||
ContactAvatar.displayAvatar(c, holder.avatarLayout);
|
||||
//TODO get if contact has security capabilities
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue