Simplification

This commit is contained in:
M66B 2022-01-15 15:42:54 +01:00
parent 9fcd007b5a
commit f72bd168a4
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.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