diff --git a/src/components/structures/RoomStatusBar.js b/src/components/structures/RoomStatusBar.js index 3e07d617de..e390be6979 100644 --- a/src/components/structures/RoomStatusBar.js +++ b/src/components/structures/RoomStatusBar.js @@ -123,7 +123,9 @@ export default class RoomStatusBar extends React.Component { }; _showCallBar() { - return this.props.callState !== CallState.Ended && this.props.callState !== CallState.Ringing; + return (this.props.callState && + (this.props.callState !== CallState.Ended && this.props.callState !== CallState.Ringing) + ); } _onResendAllClick = () => {