info-dialog: don't show when a SIP gateway joins alone
This commit is contained in:
parent
5b0c6e088a
commit
8fd0f56be7
|
@ -250,10 +250,11 @@ class InfoDialogButton extends Component<Props, State> {
|
|||
function _mapStateToProps(state) {
|
||||
const currentLiveStreamingSession
|
||||
= getActiveSession(state, JitsiRecordingConstants.mode.STREAM);
|
||||
const { iAmRecorder, iAmSipGateway } = state['features/base/config'];
|
||||
|
||||
return {
|
||||
_dialIn: state['features/invite'],
|
||||
_disableAutoShow: state['features/base/config'].iAmRecorder,
|
||||
_disableAutoShow: iAmRecorder || iAmSipGateway,
|
||||
_isConferenceJoined:
|
||||
Boolean(state['features/base/conference'].conference),
|
||||
_liveStreamViewURL:
|
||||
|
|
Loading…
Reference in New Issue