fix(device-selection): Update parameters from audio level change callback

This commit is contained in:
Leonard Kim 2017-05-25 11:11:53 -07:00 committed by yanas
parent 1da95d2e37
commit ff0e392ca8
1 changed files with 3 additions and 1 deletions

View File

@ -118,11 +118,13 @@ class AudioInputPreview extends PureComponent {
* Updates the internal state of the last know audio level. The level should
* be between 0 and 1, as the level will be used as a percentage out of 1.
*
* @param {TraceablePeerConnection} peerConnection - The peer connection
* representation from the library.
* @param {number} audioLevel - The new audio level for the track.
* @private
* @returns {void}
*/
_updateAudioLevel(audioLevel) {
_updateAudioLevel(peerConnection, audioLevel) {
this.setState({
audioLevel
});