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