feat(native-participants-pane) volume level state fix
This commit is contained in:
parent
5182a720f9
commit
88ddb8d9b4
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue