Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Fix crash on joining rooms
Browse files Browse the repository at this point in the history
#6818 passed roomType
in obbData & then used oobData without null checking, but we don't always
have oobData so joining a room from /join or from an invite would crash.

Type: defect
  • Loading branch information
dbkr committed Sep 20, 2021
1 parent 9ef5173 commit 209cd30
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 209cd30

Please sign in to comment.