File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
packages/stream_video/lib/src/call Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,10 @@ class Call {
234234 SharedEmitter <SfuEvent > get events => _events;
235235 final _events = MutableSharedEmitterImpl <SfuEvent >();
236236
237+ SharedEmitter <CoordinatorCallEvent > get coordinatorEvents =>
238+ _coordinatorEvents;
239+ final _coordinatorEvents = MutableSharedEmitterImpl <CoordinatorCallEvent >();
240+
237241 OnCallPermissionRequest ? onPermissionRequest;
238242
239243 final _status = MutableStateEmitterImpl <_ConnectionStatus >(
@@ -279,6 +283,7 @@ class Call {
279283 _subscriptions.add (
280284 _idCoordEvents,
281285 _coordinatorClient.events.on < CoordinatorCallEvent > ((event) async {
286+ _coordinatorEvents.emit (event);
282287 await _onCoordinatorEvent (event);
283288 }),
284289 );
You can’t perform that action at this time.
0 commit comments