From 5d7c71210ff3353362ffa0c6775c60979270bbde Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 20 Nov 2024 19:04:05 +0000 Subject: [PATCH] Consider `org.matrix.msc3417.call` as video room in create room dialog (#28497) Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/views/dialogs/CreateRoomDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/dialogs/CreateRoomDialog.tsx b/src/components/views/dialogs/CreateRoomDialog.tsx index 990efdda71..4d36d01623 100644 --- a/src/components/views/dialogs/CreateRoomDialog.tsx +++ b/src/components/views/dialogs/CreateRoomDialog.tsx @@ -256,7 +256,7 @@ export default class CreateRoomDialog extends React.Component { }); 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) {