You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The stabilized attribute is improperly labeled as stability in StartTranscription.php. This results either in a failure to start a call or the attribute just being ignored by Bandwidth when the call is started.
To fix, add a proper stabilized setter. Leave the old one for backwards compatibility.
/** * Sets the stabilized attribute for StartTranscription. This remains for backwards compatibility. * * @param bool $stability Whether to send transcription update events to the specified destination only after they have become stable. Requires destination. Defaults to true. * @deprecated Use stabilized() instead */publicfunctionstability( bool$stability): StartTranscription {
$this->stabilized = $stability;
return$this;
}
/** * Sets the stabilized attribute for StartTranscription * * @param bool $stabilized Whether to send transcription update events to the specified destination only after they have become stable. Requires destination. Defaults to true. */publicfunctionstabilized( bool$stabilized): StartTranscription {
$this->stabilized = $stabilized;
return$this;
}
jonathanminson
changed the title
[BUG] Description
[BUG] Stabilized is being improperly set by StartTranscription
Mar 31, 2025
jonathanminson
changed the title
[BUG] Stabilized is being improperly set by StartTranscription
[BUG] Stabilized attribute is being improperly set by StartTranscription
Mar 31, 2025
Checklist
Description
The
stabilized
attribute is improperly labeled asstability
in StartTranscription.php. This results either in a failure to start a call or the attribute just being ignored by Bandwidth when the call is started.Environment Information
All
Sample Code Snippet
Stack Trace
# Stack Trace
N/A
Expected Behavior
Suggested Fix
To fix, add a proper stabilized setter. Leave the old one for backwards compatibility.
Then, properly set the XML attribute:
The text was updated successfully, but these errors were encountered: