summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKamil Ogórek <kamil.ogorek@gmail.com>2022-12-28 11:42:04 +0100
committerGitHub <noreply@github.com>2022-12-28 11:42:04 +0100
commit8bdf66c59c7424759f441e19047d7ffc0bf13ef3 (patch)
tree2fb73e493b3b281e1384b0fda88830006bf633b1
parentbece1ce05704d9a81efd2e04a22ee721795903e7 (diff)
fix(ext/net): Remove unstable check from op_node_unstable_net_listen_udp (#17207)
The whole point of creating this alternative operation was to allow usage in node, without `--unstable` flag. Introduced and I believe missed in https://github.com/denoland/deno/pull/16520/
-rw-r--r--ext/net/ops.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/net/ops.rs b/ext/net/ops.rs
index 48db79745..c4fb82fb6 100644
--- a/ext/net/ops.rs
+++ b/ext/net/ops.rs
@@ -366,7 +366,6 @@ fn op_node_unstable_net_listen_udp<NP>(
where
NP: NetPermissions + 'static,
{
- super::check_unstable(state, "Deno.listenDatagram");
net_listen_udp::<NP>(state, addr, reuse_address)
}