fix(recording) fix incorrect condition for recording notification message (#11167)

This commit is contained in:
Avram Tudor 2022-03-18 13:21:10 +02:00 committed by GitHub
parent 8456a63a23
commit b8e12e581f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -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;
}