diff options
-rw-r--r-- | cli/napi/threadsafe_functions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/napi/threadsafe_functions.rs b/cli/napi/threadsafe_functions.rs index 775ad4262..f47da46e9 100644 --- a/cli/napi/threadsafe_functions.rs +++ b/cli/napi/threadsafe_functions.rs @@ -123,7 +123,7 @@ impl TsFn { } if is_blocking { - rx.recv().unwrap(); + let _ = rx.recv(); } } } |