feat(native-participants-pane) volume level state fix

This commit is contained in:
Calin Chitu 2021-07-01 15:55:06 +03:00 committed by Hristo Terezov
parent 5182a720f9
commit 88ddb8d9b4
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class VolumeSlider extends PureComponent<Props, State> {
super(props);
this.state = {
volumeLevel: (props._volume || 0) * VOLUME_SLIDER_SCALE
volumeLevel: props._volume || 0
};
this._originalVolumeChange = this._onVolumeChange;