mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-21 17:05:39 +03:00
Debugging: Only show read receipt thread when showing duplicate receipts
The new pref is better suitable for controling visibility here. Change-Id: I76cff0282bd2ac562dc5f0ed0ca51f629c63360e
This commit is contained in:
parent
d7ef3225c9
commit
c35224f538
1 changed files with 1 additions and 1 deletions
|
@ -44,7 +44,7 @@ class DisplayReadReceiptsController @Inject constructor(
|
|||
DisplayReadReceiptItem_()
|
||||
.id(readReceiptData.userId)
|
||||
.matrixItem(readReceiptData.toMatrixItem())
|
||||
.debugInfo(readReceiptData.threadId.toString().takeIf { DbgUtil.isDbgEnabled(DbgUtil.DBG_READ_RECEIPTS) })
|
||||
.debugInfo(readReceiptData.threadId.toString().takeIf { DbgUtil.isDbgEnabled(DbgUtil.DBG_SHOW_DUPLICATE_READ_RECEIPTS) })
|
||||
.avatarRenderer(avatarRender)
|
||||
.timestamp(timestamp)
|
||||
.userClicked { listener?.didSelectUser(readReceiptData.userId) }
|
||||
|
|
Loading…
Reference in a new issue