소스 검색

feat(native-participants-pane) updated slider volume private prop

master
Calin Chitu 4 년 전
부모
커밋
fefe451180
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2
    1
      react/features/video-menu/components/native/VolumeSlider.js

+ 2
- 1
react/features/video-menu/components/native/VolumeSlider.js 파일 보기

@@ -148,7 +148,8 @@ function mapStateToProps(state, ownProps): Object {
148 148
 
149 149
     return {
150 150
         _startSilent: Boolean(startSilent),
151
-        _volume: localParticipant ? undefined : participantsVolume[participantID]
151
+        _volume: localParticipant ? undefined : participantID
152
+            ? participantsVolume[participantID] : undefined
152 153
     };
153 154
 }
154 155
 

Loading…
취소
저장