@newgameplusinc/odyssey-audio-video-sdk-dev 1.0.33 → 1.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -504,6 +504,8 @@ class OdysseySpatialComms extends EventManager_1.EventManager {
|
|
|
504
504
|
}, (response) => {
|
|
505
505
|
if (response.success && this.localParticipant) {
|
|
506
506
|
this.localParticipant.currentChannel = response.channelId;
|
|
507
|
+
// CRITICAL: Update mute state for all participants when joining huddle
|
|
508
|
+
this.updateAllParticipantsMuteState();
|
|
507
509
|
}
|
|
508
510
|
resolve(response);
|
|
509
511
|
});
|
|
@@ -523,6 +525,8 @@ class OdysseySpatialComms extends EventManager_1.EventManager {
|
|
|
523
525
|
}, (response) => {
|
|
524
526
|
if (response.success && this.localParticipant) {
|
|
525
527
|
this.localParticipant.currentChannel = response.channelId;
|
|
528
|
+
// CRITICAL: Update mute state for all participants when leaving huddle
|
|
529
|
+
this.updateAllParticipantsMuteState();
|
|
526
530
|
}
|
|
527
531
|
resolve(response);
|
|
528
532
|
});
|
package/package.json
CHANGED