summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrew Lee <anwlee@google.com>2015-06-18 20:24:45 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-18 20:24:45 +0000
commit5e1938960b6d590f3806cbdd61bf4b39f1e91f16 (patch)
tree5d03d6385d1411b56b03387c0f71e982c69aa2c8 /src
parentb67f24eb6229ea10afb83f8ef2bf2bc6ba29a8f6 (diff)
parentc683c795aa43c343da972b36a940b9cfbada6775 (diff)
Merge "Do not set type label if "Custom"." into mnc-dev
Diffstat (limited to 'src')
-rw-r--r--src/com/android/dialer/PhoneCallDetailsHelper.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/dialer/PhoneCallDetailsHelper.java b/src/com/android/dialer/PhoneCallDetailsHelper.java
index 68b47afcf..672a1c8e9 100644
--- a/src/com/android/dialer/PhoneCallDetailsHelper.java
+++ b/src/com/android/dialer/PhoneCallDetailsHelper.java
@@ -183,7 +183,9 @@ public class PhoneCallDetailsHelper {
if (TextUtils.isEmpty(details.name) && !TextUtils.isEmpty(details.geocode)) {
numberFormattedLabel = details.geocode;
- } else {
+ } else if (!(details.numberType == Phone.TYPE_CUSTOM
+ && TextUtils.isEmpty(details.numberLabel))) {
+ // Get type label only if it will not be "Custom" because of an empty number label.
numberFormattedLabel = Phone.getTypeLabel(
mResources, details.numberType, details.numberLabel);
}