Browse Source

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

master
Calin Chitu 3 years ago
parent
commit
fefe451180
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      react/features/video-menu/components/native/VolumeSlider.js

+ 2
- 1
react/features/video-menu/components/native/VolumeSlider.js View File

@@ -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…
Cancel
Save