openvidu-components: Hidden audio detector when participant muted

pull/713/head
csantosm 2022-04-01 12:34:00 +02:00
parent 9888154a02
commit 1cdb938ad4
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,10 @@
</div>
</div>
<div *ngIf="!isMinimal && showAudioDetection && _stream.type === 'CAMERA'" id="audio-wave-container">
<div
*ngIf="!isMinimal && showAudioDetection && _stream.type === 'CAMERA' && _stream.streamManager?.stream?.audioActive"
id="audio-wave-container"
>
<ov-audio-wave [streamManager]="_stream.streamManager"></ov-audio-wave>
</div>