Don't render null phone number labels.

fork-5.53.8
Greyson Parrelli 2019-10-18 16:20:33 -04:00
rodzic a8b1ec8e52
commit 85821274fa
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);
this.labelView.setText(label != null ? label : "");
this.labelView.setVisibility(View.VISIBLE);
}