mirror of
https://github.com/oxen-io/session-android.git
synced 2025-03-01 20:11:45 +00:00
parent
31970c4644
commit
49a539a985
@ -138,13 +138,18 @@ public class RecipientProvider {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
if (cursor != null && cursor.moveToFirst()) {
|
if (cursor != null && cursor.moveToFirst()) {
|
||||||
Uri contactUri = Contacts.getLookupUri(cursor.getLong(2), cursor.getString(1));
|
final String resultNumber = cursor.getString(3);
|
||||||
String name = cursor.getString(3).equals(cursor.getString(0)) ? null : cursor.getString(0);
|
if (resultNumber != null) {
|
||||||
ContactPhoto contactPhoto = ContactPhotoFactory.getContactPhoto(context,
|
Uri contactUri = Contacts.getLookupUri(cursor.getLong(2), cursor.getString(1));
|
||||||
Uri.withAppendedPath(Contacts.CONTENT_URI, cursor.getLong(2) + ""),
|
String name = resultNumber.equals(cursor.getString(0)) ? null : cursor.getString(0);
|
||||||
name);
|
ContactPhoto contactPhoto = ContactPhotoFactory.getContactPhoto(context,
|
||||||
|
Uri.withAppendedPath(Contacts.CONTENT_URI, cursor.getLong(2) + ""),
|
||||||
|
name);
|
||||||
|
|
||||||
return new RecipientDetails(cursor.getString(0), cursor.getString(3), contactUri, contactPhoto, color);
|
return new RecipientDetails(cursor.getString(0), resultNumber, contactUri, contactPhoto, color);
|
||||||
|
} else {
|
||||||
|
Log.w(TAG, "resultNumber is null");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} finally {
|
} finally {
|
||||||
if (cursor != null)
|
if (cursor != null)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user