Don't render 'null' contact labels.

master
Greyson Parrelli 2019-10-23 15:00:18 -07:00
parent d075a33d4e
commit 23d478191f
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ public class ContactSelectionListItem extends LinearLayout implements RecipientF
} else {
this.numberView.setText(number);
this.nameView.setEnabled(true);
this.labelView.setText(label != null ? label : "");
this.labelView.setText(label != null && !label.equals("null") ? label : "");
this.labelView.setVisibility(View.VISIBLE);
}