Browse Source

prevent NPE if name is null

tobiasKaminsky 8 years ago
parent
commit
c4e2e6a07f

+ 7 - 3
src/main/java/com/owncloud/android/ui/activity/ContactListFragment.java

@@ -386,9 +386,13 @@ class ContactListAdapter extends RecyclerView.Adapter<ContactListFragment.Contac
 
             // name
             StructuredName name = vcard.getStructuredName();
-            String first = (name.getGiven() == null) ? "" : name.getGiven() + " ";
-            String last = (name.getFamily() == null) ? "" : name.getFamily();
-            holder.getName().setText(first + last);
+            if (name != null) {
+                String first = (name.getGiven() == null) ? "" : name.getGiven() + " ";
+                String last = (name.getFamily() == null) ? "" : name.getFamily();
+                holder.getName().setText(first + last);
+            } else {
+                holder.getName().setText("");
+            }
         }
     }