diff --git a/react/features/video-menu/components/native/VolumeSlider.js b/react/features/video-menu/components/native/VolumeSlider.js index 12c5631f1..ffd655486 100644 --- a/react/features/video-menu/components/native/VolumeSlider.js +++ b/react/features/video-menu/components/native/VolumeSlider.js @@ -148,7 +148,8 @@ function mapStateToProps(state, ownProps): Object { return { _startSilent: Boolean(startSilent), - _volume: localParticipant ? undefined : participantsVolume[participantID] + _volume: localParticipant ? undefined : participantID + ? participantsVolume[participantID] : undefined }; }