Does not play sound notifications on the recording side.

pull/4191/head jitsi-meet_3724
damencho 6 years ago committed by virtuacoplenny
parent a49f62238b
commit 198eba3682
  1. 6
      react/features/recording/middleware.js

@ -106,6 +106,12 @@ MiddlewareRegistry.register(({ dispatch, getState }) => next => action => {
}
case RECORDING_SESSION_UPDATED: {
// When in recorder mode no notifications are shown
// or extra sounds are also not desired
if (getState()['features/base/config'].iAmRecorder) {
break;
}
const updatedSessionData
= getSessionById(getState(), action.sessionData.id);
const { PENDING, OFF, ON } = JitsiRecordingConstants.status;

Loading…
Cancel
Save