summaryrefslogtreecommitdiff
path: root/ext/net/01_net.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/net/01_net.js')
-rw-r--r--ext/net/01_net.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/net/01_net.js b/ext/net/01_net.js
index 803205319..11d6fbfac 100644
--- a/ext/net/01_net.js
+++ b/ext/net/01_net.js
@@ -279,9 +279,7 @@
}
send(p, addr) {
- const remote = { hostname: "127.0.0.1", ...addr };
-
- const args = { ...remote, rid: this.rid };
+ const args = { hostname: "127.0.0.1", ...addr, rid: this.rid };
return opSend(args, p);
}