diff --git a/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java b/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java index 1339dc488f..3b66a3a39a 100644 --- a/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java +++ b/src/org/thoughtcrime/securesms/recipients/NewRecipientProvider.java @@ -49,7 +49,8 @@ public class NewRecipientProvider extends RecipientProvider { if (cursor.moveToFirst()) { long rowId = cursor.getLong(0); Uri contactUri = Contacts.getLookupUri(rowId, cursor.getString(2)); - Bitmap contactPhoto = getContactPhoto(context, contactUri); + Bitmap contactPhoto = getContactPhoto(context, Uri.withAppendedPath(Contacts.CONTENT_URI, + rowId+"")); String displayName = cursor.getString(1); cursor.close();