Skip to content

Commit 4c1e715

Browse files
committed
fix: change CallControlEvent transformer to droppable
1 parent f8575b6 commit 4c1e715

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/features/call/bloc/call_bloc.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class CallBloc extends Bloc<CallEvent, CallState> with WidgetsBindingObserver im
130130
on<_HandshakeSignalingEventState>(_onHandshakeSignalingEventState, transformer: sequential());
131131
on<_CallSignalingEvent>(_onCallSignalingEvent, transformer: sequential());
132132
on<_CallPushEventIncoming>(_onCallPushEventIncoming, transformer: sequential());
133-
on<CallControlEvent>(_onCallControlEvent, transformer: sequential());
133+
on<CallControlEvent>(_onCallControlEvent, transformer: droppable());
134134
on<_CallPerformEvent>(_onCallPerformEvent, transformer: sequential());
135135
on<_PeerConnectionEvent>(_onPeerConnectionEvent, transformer: sequential());
136136
on<CallScreenEvent>(_onCallScreenEvent, transformer: sequential());

0 commit comments

Comments
 (0)