diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-07-06 16:26:34 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-07-06 18:25:09 -0400 |
commit | a2dde56c5961f451b9042c1f651af372c4984034 (patch) | |
tree | 06aaf64e257d9d6bd1f6f16eca2b02aab971c04b /js/main.ts | |
parent | 9778eceaf5922b1e051859a68b2e02a2f1b1ee8b (diff) |
Remove channel parameter from deno_send/recv.
Diffstat (limited to 'js/main.ts')
-rw-r--r-- | js/main.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/main.ts b/js/main.ts index 6ba38f669..01c3ab9fb 100644 --- a/js/main.ts +++ b/js/main.ts @@ -27,7 +27,7 @@ window["denoMain"] = () => { // First we send an empty "Start" message to let the privlaged side know we // are ready. The response should be a "StartRes" message containing the CLI // argv and other info. - const res = deno.send("start", startMsg()); + const res = deno.send(startMsg()); // TODO(ry) Remove this conditional once main.rs gets up to speed. if (res == null) { |