mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-15 10:48:54 +03:00
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
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ data class MessageInformationData(
|
|||
val readReceipts: List<ReadReceiptData> = emptyList(),
|
||||
val referencesInfoData: ReferencesInfoData? = null,
|
||||
val sentByMe : Boolean,
|
||||
val isDirect: Boolean = false,
|
||||
val isDirect: Boolean,
|
||||
val e2eDecoration: E2EDecoration = E2EDecoration.NONE
|
||||
) : Parcelable {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue