Skip to content

2.11.2

Compare
Choose a tag to compare
@charliesantos charliesantos released this 26 Jun 16:23
· 40 commits to master since this release

2.11.2 (June 26, 2024)

  • Fixed an issue where an AcquisitionFailedError is raised when making a call while a setInputDevice invocation is still in progress. The following snippet will reproduce the issue.
    // Call setInputDevice without waiting for it to resolve e.g. using 'await'
    device.audio.setInputDevice(id);
    
    // Calling device.connect immediately raises an AcquisitionFailedError error
    device.connect(...);