From 7de156db58e6d42279b5ee027883812b874687aa Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Mon, 18 Nov 2024 17:23:25 -0600 Subject: [PATCH] Stub out speechEvent callback Co-authored-by: Miriam Zimmerman --- ts/services/calling.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/services/calling.ts b/ts/services/calling.ts index 0080730092..5e9c9d8246 100644 --- a/ts/services/calling.ts +++ b/ts/services/calling.ts @@ -1479,8 +1479,8 @@ export class CallingClass { endedReason, }); }, - onSpeechEvent: (_groupCall: GroupCall, event: SpeechEvent) => { - log.info('GroupCall#onSpeechEvent', event); + onSpeechEvent: (_groupCall: GroupCall, _event: SpeechEvent) => { + // Implementation to come later }, }; }