diff --git a/libs/android-support-v4.jar b/libs/android-support-v4.jar index 99e063b33a..feaf44f801 100644 Binary files a/libs/android-support-v4.jar and b/libs/android-support-v4.jar differ diff --git a/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java b/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java index 9da563aefb..1339dc488f 100644 --- a/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java +++ b/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java @@ -75,7 +75,8 @@ public class NewRecipientProvider extends RecipientProvider { try { if (cursor != null && cursor.moveToFirst()) { Uri contactUri = Contacts.getLookupUri(cursor.getLong(2), cursor.getString(1)); - Bitmap contactPhoto = getContactPhoto(context, contactUri); + Bitmap contactPhoto = getContactPhoto(context, Uri.withAppendedPath(Contacts.CONTENT_URI, + cursor.getLong(2)+"")); Recipient recipient = new Recipient(cursor.getString(0), number, contactUri, contactPhoto); return recipient;