Consider org.matrix.msc3417.call as video room in create room dialog (#28497)

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2024-11-20 19:04:05 +00:00 committed by GitHub
parent d8844c682b
commit 5d7c71210f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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) {