mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
fix(napi): ignore tsfn recv error (#20324)
Ref https://github.com/denoland/deno/issues/20072
This commit is contained in:
parent
f76bfbbe33
commit
329698cf73
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ impl TsFn {
|
||||||
}
|
}
|
||||||
|
|
||||||
if is_blocking {
|
if is_blocking {
|
||||||
rx.recv().unwrap();
|
let _ = rx.recv();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue