summaryrefslogtreecommitdiff
path: root/java/com/android/contacts/common/list
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/contacts/common/list')
-rw-r--r--java/com/android/contacts/common/list/PhoneNumberListAdapter.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/java/com/android/contacts/common/list/PhoneNumberListAdapter.java b/java/com/android/contacts/common/list/PhoneNumberListAdapter.java
index 71d9dad5f..741e606ac 100644
--- a/java/com/android/contacts/common/list/PhoneNumberListAdapter.java
+++ b/java/com/android/contacts/common/list/PhoneNumberListAdapter.java
@@ -381,7 +381,11 @@ public class PhoneNumberListAdapter extends ContactEntryListAdapter {
text = phoneLabel;
} else {
final String phoneNumber = cursor.getString(PhoneQuery.PHONE_NUMBER);
- text = PhoneNumberHelper.getGeoDescription(mContext, phoneNumber);
+ text =
+ PhoneNumberHelper.getGeoDescription(
+ mContext,
+ phoneNumber,
+ PhoneNumberHelper.getCurrentCountryIso(mContext, null /* PhoneAccountHandle */));
}
}
view.setPhoneNumber(text);