mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 10:47:28 +00:00
No name
This commit is contained in:
parent
a5494f4944
commit
42eae5b3d2
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ public class AdapterContact extends RecyclerView.Adapter<AdapterContact.ViewHold
|
|||
}
|
||||
}
|
||||
|
||||
tvName.setText(contact.name == null ? contact.email : contact.name);
|
||||
tvName.setText(contact.name == null ? "---" : contact.name);
|
||||
tvEmail.setText(contact.accountName + "/" + contact.email);
|
||||
tvTimes.setText(NF.format(contact.times_contacted));
|
||||
tvLast.setText(contact.last_contacted == null ? null
|
||||
|
|
Loading…
Reference in a new issue