Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WASM][FIX] test tests/node/websock_rpc_test.py #13862

Merged
merged 9 commits into from
Jan 29, 2023
2 changes: 1 addition & 1 deletion web/emcc/tvmjs_support.cc
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ class AsyncLocalSession : public LocalSession {
// pass the callback as the last argument.
setter(num_args, packed_callback);

auto* pf = static_cast<PackedFunc*>(func);
auto* pf = static_cast<PackedFuncObj*>(func);
pf->CallPacked(TVMArgs(values.data(), type_codes.data(), num_args + 1), &temp);
} else if (func == get_time_eval_placeholder_.get()) {
// special handle time evaluator.
Expand Down