Revert CNAP change to fix more serious Contact List issue
This fix was originally made to handle a case where a CNAP name would
not be logged correctly. However this breaks a more serious scenario
where adding a contact, placing a call to that contact, and then deleting
that contact would still show the name of the old contact in the log,
which is incorrect. Therefore, reverting until a better fix can be found.
diff --git a/src/com/android/contacts/RecentCallsListActivity.java b/src/com/android/contacts/RecentCallsListActivity.java
index 2436e0b..6abaf23 100644
--- a/src/com/android/contacts/RecentCallsListActivity.java
+++ b/src/com/android/contacts/RecentCallsListActivity.java
@@ -336,7 +336,7 @@
phonesCursor.close();
}
}
- if (info != null && info != ContactInfo.EMPTY) {
+ if (info != null) {
updateCallLog(ciq, info);
}
}