diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 73f92fac8a..d8fff4432e 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -593,7 +593,7 @@ export default class CallView extends React.Component { const someoneIsScreensharing = this.props.call.getFeeds().some((feed) => { return feed.purpose === SDPStreamMetadataPurpose.Screenshare; }); - const isVideoCall = this.props.call.type = CallType.Video; + const isVideoCall = this.props.call.type === CallType.Video; let contentView: React.ReactNode; let holdTransferContent;