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

Fix video calls #7256

Merged
merged 1 commit into from
Dec 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix video calls
Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
  • Loading branch information
SimonBrandner committed Dec 2, 2021
commit 7d774dfd3be862961dc585c4e396ec4cdcca01bc
2 changes: 1 addition & 1 deletion src/components/views/rooms/RoomHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export default class RoomHeader extends React.Component<IProps, IState> {
const videoCallButton = <AccessibleTooltipButton
className="mx_RoomHeader_button mx_RoomHeader_videoCallButton"
onClick={(ev: React.MouseEvent<Element>) => ev.shiftKey ?
this.displayInfoDialogAboutScreensharing() : this.props.onCallPlaced(CallType.Voice)}
this.displayInfoDialogAboutScreensharing() : this.props.onCallPlaced(CallType.Video)}
title={_t("Video call")}
key="video"
/>;
Expand Down