mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-16 05:04:57 +08:00
Add another null guard for member (#7984)
* Add another null guard for member To hopefully fix https://github.com/vector-im/element-web/issues/21319 * Use getSender() Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
3426c3c3cd
commit
10c8a31736
@ -114,7 +114,7 @@ export default class SenderProfile extends React.Component<IProps, IState> {
|
||||
if (SettingsStore.getValue("feature_use_only_current_profiles")) {
|
||||
const room = MatrixClientPeg.get().getRoom(mxEvent.getRoomId());
|
||||
if (room) {
|
||||
member = room.getMember(member.userId);
|
||||
member = room.getMember(mxEvent.getSender());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user