mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Fixed display issue due to phone number alias
This commit is contained in:
parent
a17f4feaeb
commit
a2b88d87b0
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ public class SearchContactsListAdapter extends BaseAdapter {
|
|||
|
||||
private boolean contactIsSelected(ContactAddress ca) {
|
||||
for (ContactAddress c : contactsSelected) {
|
||||
if (c.getAddressAsDisplayableString().compareTo(ca.getAddressAsDisplayableString()) == 0) return true;
|
||||
if (c.getAddress().asStringUriOnly().compareTo(ca.getAddress().asStringUriOnly()) == 0) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue