|
@@ -401,7 +401,7 @@ class Thumbnail extends Component<Props, State> {
|
401
|
401
|
_videoTrack
|
402
|
402
|
} = this.props;
|
403
|
403
|
const { id } = _participant || {};
|
404
|
|
- const { audioLevel = 0 } = this.state;
|
|
404
|
+ const { audioLevel } = this.state;
|
405
|
405
|
|
406
|
406
|
|
407
|
407
|
return (
|
|
@@ -447,7 +447,7 @@ class Thumbnail extends Component<Props, State> {
|
447
|
447
|
_startSilent
|
448
|
448
|
} = this.props;
|
449
|
449
|
const { id } = _participant;
|
450
|
|
- const { audioLevel = 0, volume = 1 } = this.state;
|
|
450
|
+ const { audioLevel, volume } = this.state;
|
451
|
451
|
|
452
|
452
|
// hide volume when in silent mode
|
453
|
453
|
const onVolumeChange = _startSilent ? undefined : this._onVolumeChange;
|