mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
feat(external-api) add data-channel-open event
Signals that the bridge channel is open. It may take a few ms to get established after the conference join, so applications might be interested in using it once ready.
This commit is contained in:
committed by
Saúl Ibarra Corretgé
parent
dd184763ff
commit
12139655c6
@@ -3,6 +3,7 @@
|
||||
import {
|
||||
CONFERENCE_FAILED,
|
||||
CONFERENCE_JOINED,
|
||||
DATA_CHANNEL_OPENED,
|
||||
KICKED_OUT
|
||||
} from '../base/conference';
|
||||
import { NOTIFY_CAMERA_ERROR, NOTIFY_MIC_ERROR } from '../base/devices';
|
||||
@@ -103,6 +104,10 @@ MiddlewareRegistry.register(store => next => action => {
|
||||
break;
|
||||
}
|
||||
|
||||
case DATA_CHANNEL_OPENED:
|
||||
APP.API.notifyDataChannelOpened();
|
||||
break;
|
||||
|
||||
case DOMINANT_SPEAKER_CHANGED:
|
||||
APP.API.notifyDominantSpeakerChanged(action.participant.id);
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user