Skip to content

Commit 3852227

Browse files
author
Germain Souquet
committed
Fix replies not appearing in timeline
1 parent 18b5b18 commit 3852227

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/structures/MessagePanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
448448
// Always show highlighted event
449449
if (this.props.highlightedEventId === mxEv.getId()) return true;
450450

451-
if (mxEv.replyEventId
451+
if (mxEv.replyInThread
452452
&& this.props.hideThreadedMessages
453453
&& SettingsStore.getValue("feature_thread")) {
454454
return false;

0 commit comments

Comments
 (0)