From 8d014b7fa2dc2b34de2a23ef5bb1a4e998ad3dfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Tue, 27 Apr 2021 12:23:21 +0200 Subject: [PATCH] Use getLocalFeeds() for better clarity 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 7be473f78f..273337ff1e 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -592,10 +592,10 @@ export default class CallView extends React.Component { mx_CallView_voice: true, }); - const feeds = this.state.feeds.map((feed, i) => { + const feeds = this.props.call.getLocalFeeds().map((feed, i) => { // Here we check to hide local audio feeds to achieve the same UI/UX // as before. But once again this might be subject to change - if (feed.isVideoMuted() && feed.isLocal()) return; + if (feed.isVideoMuted()) return; return (