Skip to content

Commit b83d6ce

Browse files
committed
fix(main): remove redundant null-aware operator on ignore() after catchError chain
1 parent c902412 commit b83d6ce

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
@@ -2705,7 +2705,7 @@ class CallBloc extends Bloc<CallEvent, CallState> with WidgetsBindingObserver im
27052705
),
27062706
)
27072707
?.catchError((e, s) => callErrorReporter.handle(e, s, '_handleHandshakeReceived pendingHangup retry error'))
2708-
?.ignore();
2708+
.ignore();
27092709
}
27102710

27112711
final actions = await _handshakeProcessor.process(

0 commit comments

Comments
 (0)