Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6749 from matrix-org/gsouquet/fix-reply-display
Browse files Browse the repository at this point in the history
Fix replies not appearing in timeline
  • Loading branch information
germain-gg authored Sep 6, 2021
2 parents 18b5b18 + 3852227 commit ecd1920
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/structures/MessagePanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
// Always show highlighted event
if (this.props.highlightedEventId === mxEv.getId()) return true;

if (mxEv.replyEventId
if (mxEv.replyInThread
&& this.props.hideThreadedMessages
&& SettingsStore.getValue("feature_thread")) {
return false;
Expand Down

0 comments on commit ecd1920

Please sign in to comment.