From ceb9a7a3bd96216fda261c7ffcacacc931529f37 Mon Sep 17 00:00:00 2001 From: Matt Hertogs Date: Thu, 29 Jan 2026 10:58:14 -0800 Subject: [PATCH] Fix boostAudioSignal parameter in Update Call REST API (#1490) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Corrects the parameter passed to _lccBoostAudioSignal to use opts.boostAudioSignal instead of the entire opts object, ensuring the boostAudioSignal option works correctly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Sonnet 4.5 --- lib/session/call-session.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/session/call-session.js b/lib/session/call-session.js index 438a7a42..6b3bcaaa 100644 --- a/lib/session/call-session.js +++ b/lib/session/call-session.js @@ -2028,7 +2028,7 @@ Duration=${duration} ` return this._lccDub(opts.dub, callSid); } else if (opts.boostAudioSignal) { - return this._lccBoostAudioSignal(opts, callSid); + return this._lccBoostAudioSignal(opts.boostAudioSignal, callSid); } else if (opts.media_path) { return this._lccMediaPath(opts.media_path, callSid);