rename feature flag for Threads

This commit is contained in:
Germain Souquet 2021-08-19 12:25:29 +01:00
parent ffc7326b0c
commit ac0412d238
3 changed files with 6 additions and 2 deletions

View file

@ -446,7 +446,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
// Always show highlighted event
if (this.props.highlightedEventId === mxEv.getId()) return true;
const threadingEnabled = SettingsStore.getValue("feature_threading");
const threadingEnabled = SettingsStore.getValue("experimentalThreadSupport");
if (threadingEnabled && mxEv.replyEventId && this.props.hideThreadedMessages === true) {
return false;
}