Skip to content

Commit 5d7c712

Browse files
authored
Consider org.matrix.msc3417.call as video room in create room dialog (#28497)
Signed-off-by: Michael Telatynski <[email protected]>
1 parent d8844c6 commit 5d7c712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/views/dialogs/CreateRoomDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ export default class CreateRoomDialog extends React.Component<IProps, IState> {
256256
});
257257

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

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

0 commit comments

Comments
 (0)