Use cached value to read member count

This commit is contained in:
Germain Souquet 2021-07-21 16:09:32 +02:00
parent 34b8870a95
commit e5bc5a933e

View file

@ -712,6 +712,8 @@ export default class MessagePanel extends React.Component<IProps, IState> {
const callEventGrouper = this.callEventGroupers.get(mxEv.getContent().call_id);
const isDirectMessage = this.props.room?.getJoinedMemberCount() <= 2;
// use txnId as key if available so that we don't remount during sending
ret.push(
<TileErrorBoundary key={mxEv.getTxnId() || eventId} mxEvent={mxEv}>
@ -743,7 +745,7 @@ export default class MessagePanel extends React.Component<IProps, IState> {
enableFlair={this.props.enableFlair}
showReadReceipts={this.props.showReadReceipts}
callEventGrouper={callEventGrouper}
hideSender={this.props.room?.getMembers().length <= 2 && this.props.layout === Layout.Bubble}
hideSender={isDirectMessage && this.props.layout === Layout.Bubble}
/>
</TileErrorBoundary>,
);