mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-02-16 20:10:04 +03:00
Hide sending icon also for sent (not only synced) messages
This is what the text coloring does as well. Change-Id: I92493d36056ac95db20de8591dfebc829e00c31f
This commit is contained in:
parent
8da6ec31d8
commit
21456c90c5
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class MessageInformationDataFactory @Inject constructor(private val session: Ses
|
|||
ReferencesInfoData(verificationState)
|
||||
},
|
||||
sentByMe = event.root.senderId == session.myUserId,
|
||||
readReceiptAnonymous = if (event.root.sendState == SendState.SYNCED) {
|
||||
readReceiptAnonymous = if (event.root.sendState == SendState.SYNCED || event.root.sendState == SendState.SENT) {
|
||||
/*if (event.readByOther) {
|
||||
AnonymousReadReceipt.READ
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue