Don't render 'null' contact labels.

fork-5.53.8
Greyson Parrelli 2019-10-23 15:00:18 -07:00
rodzic d075a33d4e
commit 23d478191f
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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);
}