소스 검색

Does not play sound notifications on the recording side.

master
damencho 6 년 전
부모
커밋
198eba3682
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6
    0
      react/features/recording/middleware.js

+ 6
- 0
react/features/recording/middleware.js 파일 보기

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

Loading…
취소
저장