From 775c531fe7ad07cd72e329149b8f58e4c52ffa2c Mon Sep 17 00:00:00 2001 From: damencho Date: Mon, 27 Jan 2020 15:13:59 +0000 Subject: [PATCH] Enables all recording/livestreaming notifications in sip gw mode. --- modules/UI/UI.js | 2 +- react/features/recording/middleware.js | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/UI/UI.js b/modules/UI/UI.js index 7619f694a..35d523c47 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -177,10 +177,10 @@ UI.start = function() { // in case of iAmSipGateway keep local video visible if (!config.iAmSipGateway) { VideoLayout.setLocalVideoVisible(false); + APP.store.dispatch(setNotificationsEnabled(false)); } APP.store.dispatch(setToolboxEnabled(false)); - APP.store.dispatch(setNotificationsEnabled(false)); UI.messageHandler.enablePopups(false); } }; diff --git a/react/features/recording/middleware.js b/react/features/recording/middleware.js index 8d4141b5f..dbdc1a253 100644 --- a/react/features/recording/middleware.js +++ b/react/features/recording/middleware.js @@ -127,7 +127,13 @@ 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) { + // but we want to indicate those in case of sip gateway + const { + iAmRecorder, + iAmSipGateway + } = getState()['features/base/config']; + + if (iAmRecorder && !iAmSipGateway) { break; }