mirror of
https://github.com/element-hq/element-web
synced 2024-11-25 18:55:58 +03:00
Fix "show read receipts sent by other users" not applying to threads (#10445)
This commit is contained in:
parent
aec454dd6f
commit
58a4003a59
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ export default class ThreadView extends React.Component<IProps, IState> {
|
||||||
<TimelinePanel
|
<TimelinePanel
|
||||||
key={this.state.thread.id}
|
key={this.state.thread.id}
|
||||||
ref={this.timelinePanel}
|
ref={this.timelinePanel}
|
||||||
showReadReceipts={true}
|
showReadReceipts={this.context.showReadReceipts}
|
||||||
manageReadReceipts={true}
|
manageReadReceipts={true}
|
||||||
manageReadMarkers={true}
|
manageReadMarkers={true}
|
||||||
sendReadReceiptOnLoad={true}
|
sendReadReceiptOnLoad={true}
|
||||||
|
|
Loading…
Reference in a new issue