Fixes bug in merging DataItems for collapse

Change-Id: I87eb2b4eab5af1b71cc47edf2471824c83b45d4a
diff --git a/src/com/android/contacts/common/model/dataitem/DataItem.java b/src/com/android/contacts/common/model/dataitem/DataItem.java
index a209ac9..1726f40 100644
--- a/src/com/android/contacts/common/model/dataitem/DataItem.java
+++ b/src/com/android/contacts/common/model/dataitem/DataItem.java
@@ -191,6 +191,7 @@
         // If this does not have a label and that does, or if that's label is higher precedence,
         // use that's label
         if ((!hasKindTypeColumn(thisKind) && that.hasKindTypeColumn(thatKind)) ||
+                that.hasKindTypeColumn(thatKind) &&
                 RawContactModifier.getTypePrecedence(thisKind, getKindTypeColumn(thisKind))
                 >
                 RawContactModifier.getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind))) {