Introduce support for CDMA caller name presentation (CNAP)
This is one small change for the Contacts app, intended to be integrated
with another set of changes for the Phone app.
diff --git a/src/com/android/contacts/RecentCallsListActivity.java b/src/com/android/contacts/RecentCallsListActivity.java
index 6abaf23..2436e0b 100644
--- a/src/com/android/contacts/RecentCallsListActivity.java
+++ b/src/com/android/contacts/RecentCallsListActivity.java
@@ -336,7 +336,7 @@
phonesCursor.close();
}
}
- if (info != null) {
+ if (info != null && info != ContactInfo.EMPTY) {
updateCallLog(ciq, info);
}
}