Skip to content

Commit

Permalink
Consider org.matrix.msc3417.call as video room in create room dialog (
Browse files Browse the repository at this point in the history
#28497)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
  • Loading branch information
t3chguy authored Nov 20, 2024
1 parent d8844c6 commit 5d7c712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/dialogs/CreateRoomDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
});

public render(): React.ReactNode {
const isVideoRoom = this.props.type === RoomType.ElementVideo;
const isVideoRoom = this.props.type === RoomType.ElementVideo || this.props.type === RoomType.UnstableCall;

let aliasField: JSX.Element | undefined;
if (this.state.joinRule === JoinRule.Public) {
Expand Down

0 comments on commit 5d7c712

Please sign in to comment.