Fix crash when screen sharing is running
parent
b430802b76
commit
014c805530
|
|
@ -939,7 +939,7 @@ export default withRoomContext(connect(
|
|||
Math.round(next.peerVolumes[next.me.id]) &&
|
||||
prev.peers === next.peers &&
|
||||
prev.producers === next.producers &&
|
||||
prev.settings === next.settings,
|
||||
prev.settings === next.settings &&
|
||||
prev.transports === next.transports
|
||||
);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -305,7 +305,7 @@ class VideoView extends React.PureComponent
|
|||
</React.Fragment>
|
||||
}
|
||||
|
||||
{ isMe &&
|
||||
{ isMe && !isScreen &&
|
||||
(netInfo.recv && netInfo.send && netInfo.send.iceSelectedTuple) &&
|
||||
<React.Fragment>
|
||||
<span className={'RecvL'}>Recv: </span>
|
||||
|
|
|
|||
Loading…
Reference in New Issue