fix(recording) fix incorrect condition for recording notification message (#11167)
This commit is contained in:
parent
8456a63a23
commit
b8e12e581f
|
@ -231,8 +231,7 @@ class StartRecordingDialogContent extends Component<Props> {
|
|||
t
|
||||
} = this.props;
|
||||
|
||||
if (isVpaas
|
||||
|| selectedRecordingService !== RECORDING_TYPES.JITSI_REC_SERVICE) {
|
||||
if (!(isVpaas && selectedRecordingService === RECORDING_TYPES.JITSI_REC_SERVICE)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue