From 89983820df049129c0ba35137f49f05dedc6fbcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Thu, 22 Jul 2021 09:49:37 +0200 Subject: [PATCH] Fix dumb typo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Šimon Brandner --- src/components/views/voip/CallView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;