mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-11 00:31:46 +00:00
Display contact icons correctly in MMS ConversationItems
This commit is contained in:
@@ -43,7 +43,6 @@ import org.thoughtcrime.securesms.service.MessageNotifier;
|
|||||||
import ws.com.google.android.mms.MmsException;
|
import ws.com.google.android.mms.MmsException;
|
||||||
|
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.Map.Entry;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A cursor adapter for a conversation thread. Ultimately
|
* A cursor adapter for a conversation thread. Ultimately
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ public class Recipient implements Parcelable {
|
|||||||
this.name = in.readString();
|
this.name = in.readString();
|
||||||
this.number = in.readString();
|
this.number = in.readString();
|
||||||
this.contactUri = in.readParcelable(null);
|
this.contactUri = in.readParcelable(null);
|
||||||
|
this.contactPhoto = in.readParcelable(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Uri getContactUri() {
|
public Uri getContactUri() {
|
||||||
@@ -75,6 +76,7 @@ public class Recipient implements Parcelable {
|
|||||||
dest.writeString(name);
|
dest.writeString(name);
|
||||||
dest.writeString(number);
|
dest.writeString(number);
|
||||||
dest.writeParcelable(contactUri, 0);
|
dest.writeParcelable(contactUri, 0);
|
||||||
|
dest.writeParcelable(contactPhoto, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
public String toShortString() {
|
public String toShortString() {
|
||||||
|
|||||||
Reference in New Issue
Block a user