Skip to content

Commit bc659bd

Browse files
authored
[VBLOCKS-4107] Fix null publisher on destroy (#317)
* fix: reorder device destroy operations * chore: unit tests * docs: changelog entry
1 parent 7035891 commit bc659bd

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Changes
1313

1414
- Added an API for testing `PreflightTest` in realms other than prod. Users can now pass `chunderw` and `eventgw` values within the options object when constructing a `PreflightTest`. Note that these new options are meant for internal testing by Twilio employees only, and should not be used otherwise.
1515

16+
Bug Fixes
17+
---------
18+
19+
- Addressed an issue where the `publisher` would be `null` upon destruction of an `AudioProcessorObserver`.
20+
1621
2.12.3 (December 3, 2024)
1722
=========================
1823

lib/twilio/device.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -646,9 +646,9 @@ class Device extends EventEmitter {
646646
this._stopRegistrationTimer();
647647

648648
this._destroyStream();
649-
this._destroyPublisher();
650649
this._destroyAudioHelper();
651650
this._audioProcessorEventObserver?.destroy();
651+
this._destroyPublisher();
652652

653653
if (this._networkInformation && typeof this._networkInformation.removeEventListener === 'function') {
654654
this._networkInformation.removeEventListener('change', this._publishNetworkChange);

tests/unit/device.ts

+9
Original file line numberDiff line numberDiff line change
@@ -475,6 +475,15 @@ describe('Device', function() {
475475
sinon.assert.calledOnce(stub);
476476
});
477477

478+
it('should destroy the publisher after the audioProcessorEventObserver', () => {
479+
const observerStub =
480+
(device['_audioProcessorEventObserver']!.destroy = sinon.stub());
481+
const publisherStub =
482+
(device['_destroyPublisher'] = sinon.stub());
483+
device.destroy();
484+
assert(observerStub.calledBefore(publisherStub));
485+
});
486+
478487
it('should stop sending registrations', () => {
479488
pstream.register.resetHistory();
480489

0 commit comments

Comments
 (0)