mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
Use more performant getMembersCount to decide to hide or show sender
This commit is contained in:
parent
e5bc5a933e
commit
43d62aa8c1
1 changed files with 1 additions and 1 deletions
|
@ -712,7 +712,7 @@ 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;
|
||||
const isDirectMessage = this.props.room?.getMembersCount() <= 2;
|
||||
|
||||
// use txnId as key if available so that we don't remount during sending
|
||||
ret.push(
|
||||
|
|
Loading…
Reference in a new issue