This commit is contained in:
M66B 2022-01-06 08:49:58 +01:00
parent a5494f4944
commit 42eae5b3d2
1 changed files with 1 additions and 1 deletions

View File

@ -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