parent
4d6ca4383f
commit
40a6240444
|
@ -297,8 +297,8 @@ var config = {
|
||||||
|
|
||||||
// Local recording configuration.
|
// Local recording configuration.
|
||||||
// localRecording: {
|
// localRecording: {
|
||||||
// // Whether to enable local recording or not.
|
// // Whether to disable local recording or not.
|
||||||
// enable: false,
|
// disable: false,
|
||||||
// // Whether to notify all participants when a participant is recording locally.
|
// // Whether to notify all participants when a participant is recording locally.
|
||||||
// notifyAllParticipants: false
|
// notifyAllParticipants: false
|
||||||
// },
|
// },
|
||||||
|
|
|
@ -707,7 +707,7 @@ function _mapStateToProps(state) {
|
||||||
return {
|
return {
|
||||||
..._abstractMapStateToProps(state),
|
..._abstractMapStateToProps(state),
|
||||||
isVpaas: isVpaasMeeting(state),
|
isVpaas: isVpaasMeeting(state),
|
||||||
_localRecordingEnabled: state['features/base/config'].localRecording.enable,
|
_localRecordingEnabled: !state['features/base/config'].localRecording.disable,
|
||||||
_localRecordingNoNotification: !state['features/base/config'].localRecording.notifyAllParticipants,
|
_localRecordingNoNotification: !state['features/base/config'].localRecording.notifyAllParticipants,
|
||||||
_styles: ColorSchemeRegistry.get(state, 'StartRecordingDialogContent')
|
_styles: ColorSchemeRegistry.get(state, 'StartRecordingDialogContent')
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue