Skip to content

Commit ecd1920

Browse files
authored
Merge pull request matrix-org#6749 from matrix-org/gsouquet/fix-reply-display
Fix replies not appearing in timeline
2 parents 18b5b18 + 3852227 commit ecd1920

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)