diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2022-04-04 15:18:29 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 15:18:29 +0530 |
commit | 6bb555b549a203ebe921260379f3da70787be655 (patch) | |
tree | cad757426805c1fe626719a536a6b25a3c02812c /ext/broadcast_channel/01_broadcast_channel.js | |
parent | 797cf9cdd9fa864494cea4ba02edb7be185fe79a (diff) |
chore(ext/broadcast_channel): custom arity (#14199)
Diffstat (limited to 'ext/broadcast_channel/01_broadcast_channel.js')
-rw-r--r-- | ext/broadcast_channel/01_broadcast_channel.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/broadcast_channel/01_broadcast_channel.js b/ext/broadcast_channel/01_broadcast_channel.js index dad94860d..f3b091709 100644 --- a/ext/broadcast_channel/01_broadcast_channel.js +++ b/ext/broadcast_channel/01_broadcast_channel.js @@ -117,7 +117,7 @@ dispatch(this, this[_name], new Uint8Array(data)); // Send to listeners in other VMs. - defer(() => core.opAsync("op_broadcast_send", [rid, this[_name]], data)); + defer(() => core.opAsync("op_broadcast_send", rid, this[_name], data)); } close() { |