Skip to content

Commit d59f05b

Browse files
authored
Update handler.rs
1 parent ef83fec commit d59f05b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

frb_rust/src/dart_fn/handler.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,12 @@ impl DartFnHandler {
5959
let catch_unwind_result = panic::catch_unwind(move || {
6060
if let Some(completer) = (self.completers.lock().unwrap()).remove(&call_id) {
6161
if let Err(err) = completer.send(message) {
62+
// We do not care about details of this warning
63+
// frb-coverage:ignore-start
6264
log_warn_or_println(&format!(
6365
"Error in dart_fn_handle_output when sending message for call_id {call_id}: {err:?}"
6466
));
67+
// frb-coverage:ignore-end
6568
}
6669
}
6770
});

0 commit comments

Comments
 (0)