Skip to content

Commit

Permalink
fix: add a test
Browse files Browse the repository at this point in the history
  • Loading branch information
raviteja83 committed Dec 10, 2024
1 parent e69dd6b commit fa2c227
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ export class AudioSinkManager {
};
track.setAudioElement(audioEl);
await track.setVolume(this.volume);
await this.deviceManager.autoSelectAudioOutput();
HMSLogger.d(this.TAG, 'Audio track added', `${track}`);
this.init(); // call to create sink element if not already created
this.audioSink?.append(audioEl);
Expand Down
1 change: 1 addition & 0 deletions packages/hms-video-store/src/sdk/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ export class HMSSdk implements HMSInterface {
HMSLogger.d(this.TAG, `✅ Joined room ${roomId}`);
this.analyticsTimer.start(TimedEvent.PEER_LIST);
await this.notifyJoin();
await this.deviceManager.autoSelectAudioOutput();
this.sdkState.isJoinInProgress = false;
await this.publish(config.settings, previewRole);
} catch (error) {
Expand Down

0 comments on commit fa2c227

Please sign in to comment.