Fix isDirect information getting lost
Fixes direct chats looking like group chats after recreation due to theme change. Change-Id: Ic3dedf51d63e8e897d83e199c94bca8af520b43c
This commit is contained in:
parent
1231e6b0aa
commit
869384f59a
|
@ -42,7 +42,7 @@ data class MessageInformationData(
|
||||||
val readReceipts: List<ReadReceiptData> = emptyList(),
|
val readReceipts: List<ReadReceiptData> = emptyList(),
|
||||||
val referencesInfoData: ReferencesInfoData? = null,
|
val referencesInfoData: ReferencesInfoData? = null,
|
||||||
val sentByMe : Boolean,
|
val sentByMe : Boolean,
|
||||||
val isDirect: Boolean = false,
|
val isDirect: Boolean,
|
||||||
val e2eDecoration: E2EDecoration = E2EDecoration.NONE
|
val e2eDecoration: E2EDecoration = E2EDecoration.NONE
|
||||||
) : Parcelable {
|
) : Parcelable {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue