From 3027ab6c5bd46c661615b5acc9f5fcb5b9969f35 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Tue, 20 May 2025 12:51:19 +0200 Subject: [PATCH] ov-components: update parameter name for audio detection display in testapp --- .../src/app/openvidu-call/call.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openvidu-components-angular/src/app/openvidu-call/call.component.ts b/openvidu-components-angular/src/app/openvidu-call/call.component.ts index f506620c..0bfeb0fb 100644 --- a/openvidu-components-angular/src/app/openvidu-call/call.component.ts +++ b/openvidu-components-angular/src/app/openvidu-call/call.component.ts @@ -127,8 +127,8 @@ export class CallComponent implements OnInit { if (params['displayRoomName'] !== undefined) this.toolbarDisplayRoomName = params['displayRoomName'] === 'true'; if (params['displayParticipantName'] !== undefined) this.streamDisplayParticipantName = params['displayParticipantName'] === 'true'; - if (params['streamDisplayAudioDetection'] !== undefined) - this.streamDisplayAudioDetection = params['streamDisplayAudioDetection'] === 'true'; + if (params['displayAudioDetection'] !== undefined) + this.streamDisplayAudioDetection = params['displayAudioDetection'] === 'true'; if (params['streamVideoControls'] !== undefined) this.streamVideoControls = params['streamVideoControls'] === 'true'; if (params['participantMuteBtn'] !== undefined) this.participantPanelItemMuteButton = params['participantMuteBtn'] === 'true';