diff --git a/src/components/views/voip/CallView.tsx b/src/components/views/voip/CallView.tsx index 296ebd79ae..b212a2d5ba 100644 --- a/src/components/views/voip/CallView.tsx +++ b/src/components/views/voip/CallView.tsx @@ -418,7 +418,8 @@ export default class CallView extends React.Component { const isScreensharing = call.isScreensharing(); const { primaryFeed, sidebarShown } = this.state; - const sharerName = primaryFeed.getMember().name; + const sharerName = primaryFeed?.getMember().name; + if (!sharerName) return; let text = isScreensharing ? _t("You are presenting")