diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-05 18:40:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 18:40:24 +0200 |
commit | 2aed322dd507a8568b6ee6f4897e9a8e3220f763 (patch) | |
tree | e9a45c0b7688a9881ea9ce132b92554ef2955ad6 /runtime/js/40_tls.js | |
parent | 284e6c303956e8ca20af63b4ecc045438a260fe6 (diff) |
refactor: convert ops to use serde_v8 (#10009)
This commit rewrites most of the ops to use "serde_v8" instead
of "json" serialization.
Diffstat (limited to 'runtime/js/40_tls.js')
-rw-r--r-- | runtime/js/40_tls.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/js/40_tls.js b/runtime/js/40_tls.js index e9f683376..da43afaac 100644 --- a/runtime/js/40_tls.js +++ b/runtime/js/40_tls.js @@ -12,7 +12,7 @@ } function opAcceptTLS(rid) { - return core.jsonOpAsync("op_accept_tls", { rid }); + return core.jsonOpAsync("op_accept_tls", rid); } function opListenTls(args) { |