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 #6830 from matrix-org/t3chguy/fix/npe2
Browse files Browse the repository at this point in the history
Fix accessing field on oobData which may be undefined
  • Loading branch information
dbkr committed Sep 20, 2021
2 parents 9ef5173 + 1db2a74 commit b69f3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/rooms/RoomPreviewBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ export default class RoomPreviewBar extends React.Component<IProps, IState> {
const messageCase = this.getMessageCase();
switch (messageCase) {
case MessageCase.Joining: {
title = this.props.oobData.roomType === RoomType.Space ? _t("Joining space …") : _t("Joining room …");
title = this.props.oobData?.roomType === RoomType.Space ? _t("Joining space …") : _t("Joining room …");
showSpinner = true;
break;
}
Expand Down

0 comments on commit b69f3f2

Please sign in to comment.