Fix initial audio volume not corresponding to what's displayed (#14057)

This commit is contained in:
ThibG 2020-06-15 16:43:30 +02:00 committed by GitHub
parent df30002df8
commit 755e8c76ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ class Audio extends React.PureComponent {
this.wavesurfer.createPeakCache();
this.wavesurfer.load(this.props.src);
this.wavesurfer.toggleInteraction();
this.wavesurfer.setVolume(this.state.volume);
this.loaded = true;
}